In TemporalProperties getActivityWorkers method, some of the defaults are taken from workflowDefaults rather than activityWorkerDefaults.
Specifically, these 2:
if (value.getWorkflowPollThreadPoolSize() == null) {
value.setWorkflowPollThreadPoolSize(workflowDefaults.getWorkflowPollThreadPoolSize());
}
if (value.getActivityPollThreadPoolSize() == null) {
value.setActivityPollThreadPoolSize(workflowDefaults.getActivityPollThreadPoolSize());
}
Is this intentional or accidental?
In TemporalProperties getActivityWorkers method, some of the defaults are taken from
workflowDefaultsrather thanactivityWorkerDefaults.Specifically, these 2:
Is this intentional or accidental?