Skip to content

Commit

Permalink
Run ServiceCatalog Executor in a single thread by default
Browse files Browse the repository at this point in the history
  • Loading branch information
arunans23 committed Nov 22, 2023
1 parent 3a04d7d commit 5ef8cab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public void init(ConfigurationContext configurationContext) {
if (ServiceCatalogUtils.isServiceCatalogEnabled()) {
serviceCatalogConfiguration = ServiceCatalogUtils.readConfiguration(secretCallbackHandlerService);
serviceCatalogExecutor = Executors.newFixedThreadPool(
ServiceCatalogUtils.getExecutorThreadCount(serviceCatalogConfiguration, 10));
ServiceCatalogUtils.getExecutorThreadCount(serviceCatalogConfiguration, 1));
}
}

Expand Down

0 comments on commit 5ef8cab

Please sign in to comment.