Remove DC to enable request ID reference links (#9178)

## What changed?
Enabled the behavior by default. 

## Why?
It has been supported for a SDK and server versions already and was
originally put in temporarily.
This commit is contained in:
Roey Berman
2026-01-30 13:45:20 -08:00
committed by GitHub
parent 23be5b28a9
commit dc6d9229d2
6 changed files with 15 additions and 34 deletions

View File

@@ -65,7 +65,6 @@ type Config struct {
EnableTransitionHistory dynamicconfig.BoolPropertyFnWithNamespaceFilter
MaxCallbacksPerWorkflow dynamicconfig.IntPropertyFnWithNamespaceFilter
MaxCHASMCallbacksPerWorkflow dynamicconfig.IntPropertyFnWithNamespaceFilter
EnableRequestIdRefLinks dynamicconfig.BoolPropertyFn
EnableChasm dynamicconfig.BoolPropertyFnWithNamespaceFilter
EnableCHASMCallbacks dynamicconfig.BoolPropertyFnWithNamespaceFilter
ChasmMaxInMemoryPureTasks dynamicconfig.IntPropertyFn
@@ -467,7 +466,6 @@ func NewConfig(
EnableTransitionHistory: dynamicconfig.EnableTransitionHistory.Get(dc),
MaxCallbacksPerWorkflow: dynamicconfig.MaxCallbacksPerWorkflow.Get(dc),
MaxCHASMCallbacksPerWorkflow: dynamicconfig.MaxCHASMCallbacksPerWorkflow.Get(dc),
EnableRequestIdRefLinks: dynamicconfig.EnableRequestIdRefLinks.Get(dc),
EnableChasm: dynamicconfig.EnableChasm.Get(dc),
ChasmMaxInMemoryPureTasks: dynamicconfig.ChasmMaxInMemoryPureTasks.Get(dc),