sureshanaparti commented on code in PR #9165:
URL: https://github.com/apache/cloudstack/pull/9165#discussion_r1636310899
##########
client/src/main/java/org/apache/cloudstack/ServerDaemon.java:
##########
@@ -158,8 +164,8 @@ public void init(final DaemonContext context) {
public void start() throws Exception {
// Thread pool
final QueuedThreadPool threadPool = new QueuedThreadPool();
- threadPool.setMinThreads(10);
- threadPool.setMaxThreads(500);
+ threadPool.setMinThreads(minThreads);
+ threadPool.setMaxThreads(maxThreads);
Review Comment:
@ahmedali6 I think, it's better to some restriction on min & max threads, as
it's configurable now (also, need to add as a comment in the properties file if
possible, check if any doc update is required)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]