We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ccd669 commit 1e9aaa2Copy full SHA for 1e9aaa2
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ConfigurationService.java
@@ -200,11 +200,11 @@ default Metrics getMetrics() {
200
}
201
202
default ExecutorService getExecutorService() {
203
- return Executors.newFixedThreadPool(DEFAULT_RECONCILIATION_THREADS_NUMBER);
+ return Executors.newFixedThreadPool(concurrentReconciliationThreads());
204
205
206
default ExecutorService getWorkflowExecutorService() {
207
- return Executors.newFixedThreadPool(DEFAULT_WORKFLOW_EXECUTOR_THREAD_NUMBER);
+ return Executors.newFixedThreadPool(concurrentWorkflowExecutorThreads());
208
209
210
default boolean closeClientOnStop() {
0 commit comments