Skip to content

Commit

Permalink
Merge pull request #3035 from arunans23/master
Browse files Browse the repository at this point in the history
Run ServiceCatalog Executor in a single thread by default
  • Loading branch information
arunans23 authored Dec 18, 2023
2 parents 6d5257b + 5ef8cab commit d14870d
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 d14870d

Please sign in to comment.