Skip to content

Commit

Permalink
Disable concrete execution scanner by default (cadence-workflow#3438)
Browse files Browse the repository at this point in the history
  • Loading branch information
anish531213 authored Aug 6, 2020
1 parent 92232ab commit ea62bcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/worker/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func NewConfig(params *service.BootstrapParams) *Config {
TaskListScannerEnabled: dc.GetBoolProperty(dynamicconfig.TaskListScannerEnabled, true),
HistoryScannerEnabled: dc.GetBoolProperty(dynamicconfig.HistoryScannerEnabled, true),
ConcreteExecutionScannerConfig: &executions.ScannerWorkflowDynamicConfig{
Enabled: dc.GetBoolProperty(dynamicconfig.ConcreteExecutionsScannerEnabled, true),
Enabled: dc.GetBoolProperty(dynamicconfig.ConcreteExecutionsScannerEnabled, false),
Concurrency: dc.GetIntProperty(dynamicconfig.ConcreteExecutionsScannerConcurrency, 25),
ExecutionsPageSize: dc.GetIntProperty(dynamicconfig.ConcreteExecutionsScannerPersistencePageSize, 1000),
BlobstoreFlushThreshold: dc.GetIntProperty(dynamicconfig.ConcreteExecutionsScannerBlobstoreFlushThreshold, 100),
Expand Down

0 comments on commit ea62bcc

Please sign in to comment.