Fix check for chasm enabled in workflow_task_completed_handler

This commit is contained in:
Roey Berman
2026-04-09 13:17:39 -07:00
parent c78d06da35
commit 946c00ec81
6 changed files with 20 additions and 6 deletions

View File

@@ -59,7 +59,6 @@ type Config struct {
HistoryCacheTTL dynamicconfig.DurationPropertyFn
HistoryCacheNonUserContextLockTimeout dynamicconfig.DurationPropertyFn
HistoryCacheBackgroundEvict dynamicconfig.TypedPropertyFn[dynamicconfig.CacheBackgroundEvictSettings]
ChasmEnabled dynamicconfig.BoolPropertyFnWithNamespaceFilter
EnableWorkflowExecutionTimeoutTimer dynamicconfig.BoolPropertyFn
EnableUpdateWorkflowModeIgnoreCurrent dynamicconfig.BoolPropertyFn
EnableTransitionHistory dynamicconfig.BoolPropertyFnWithNamespaceFilter
@@ -475,7 +474,6 @@ func NewConfig(
HistoryCacheTTL: dynamicconfig.HistoryCacheTTL.Get(dc),
HistoryCacheNonUserContextLockTimeout: dynamicconfig.HistoryCacheNonUserContextLockTimeout.Get(dc),
HistoryCacheBackgroundEvict: dynamicconfig.HistoryCacheBackgroundEvict.Get(dc),
ChasmEnabled: dynamicconfig.EnableChasm.Get(dc),
EnableWorkflowExecutionTimeoutTimer: dynamicconfig.EnableWorkflowExecutionTimeoutTimer.Get(dc),
EnableUpdateWorkflowModeIgnoreCurrent: dynamicconfig.EnableUpdateWorkflowModeIgnoreCurrent.Get(dc),
EnableTransitionHistory: dynamicconfig.EnableTransitionHistory.Get(dc),