@@ -81,14 +81,15 @@ type (
8181 // cadence-server to retrieve activity tasks. Changing this value will affect the
8282 // rate at which the worker is able to consume tasks from a task list.
8383 // Default value is 2
84+ // NOTE: if AutoScalerOptions.Enabled is set to true, this value will be ignored and AutoScalerOptions.PollerMaxCount will be used instead
8485 MaxConcurrentActivityTaskPollers int
8586
8687 // optional: Sets the minimum number of goroutines that will concurrently poll the
8788 // cadence-server to retrieve activity tasks. Changing this value will NOT affect the
8889 // rate at which the worker is able to consume tasks from a task list,
8990 // unless FeatureFlags.PollerAutoScalerEnabled is set to true.
9091 // Default value is 1
91- // Deprecated: Use AutoScalerOptions instead.
92+ // Deprecated: No effect and use AutoScalerOptions instead.
9293 MinConcurrentActivityTaskPollers int
9394
9495 // Optional: To set the maximum concurrent decision task executions this worker can have.
@@ -105,13 +106,14 @@ type (
105106 // cadence-server to retrieve decision tasks. Changing this value will affect the
106107 // rate at which the worker is able to consume tasks from a task list.
107108 // Default value is 2
109+ // NOTE: if AutoScalerOptions.Enabled is set to true, this value will be ignored and AutoScalerOptions.PollerMaxCount will be used instead
108110 MaxConcurrentDecisionTaskPollers int
109111
110112 // optional: Sets the minimum number of goroutines that will concurrently poll the
111113 // cadence-server to retrieve decision tasks. If FeatureFlags.PollerAutoScalerEnabled is set to true,
112114 // changing this value will NOT affect the rate at which the worker is able to consume tasks from a task list.
113115 // Default value is 2
114- // Deprecated: Use AutoScalerOptions instead.
116+ // Deprecated: NO effect and use AutoScalerOptions instead.
115117 MinConcurrentDecisionTaskPollers int
116118
117119 // optional: Sets the interval of poller autoscaling, between which poller autoscaler changes the poller count
0 commit comments