We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f22bf commit 71a3417Copy full SHA for 71a3417
flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/FlinkOperator.java
@@ -137,7 +137,7 @@ private void overrideOperatorConfigs(ConfigurationServiceOverrider overrider) {
137
overrider.withExecutorService(Executors.newCachedThreadPool());
138
} else {
139
LOG.info("Configuring operator with {} reconciliation threads.", parallelism);
140
- overrider.withConcurrentReconciliationThreads(parallelism);
+ overrider.withExecutorService(Executors.newFixedThreadPool(parallelism));
141
}
142
143
if (operatorConf.isJosdkMetricsEnabled()) {
0 commit comments