This is an automated email from the ASF dual-hosted git repository.
dahn pushed a commit to branch pr/9260
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/pr/9260 by this push:
new 63d68a3804e apply comment on default values
63d68a3804e is described below
commit 63d68a3804e731a9b6a41d10aa413eee0efe1c5e
Author: Daan Hoogland <[email protected]>
AuthorDate: Sun Aug 31 11:13:11 2025 +0200
apply comment on default values
---
client/src/main/java/org/apache/cloudstack/ServerDaemon.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/client/src/main/java/org/apache/cloudstack/ServerDaemon.java
b/client/src/main/java/org/apache/cloudstack/ServerDaemon.java
index 48a54c2e06f..196695e1fc6 100644
--- a/client/src/main/java/org/apache/cloudstack/ServerDaemon.java
+++ b/client/src/main/java/org/apache/cloudstack/ServerDaemon.java
@@ -108,8 +108,8 @@ public class ServerDaemon implements Daemon {
private String keystoreFile;
private String keystorePassword;
private String webAppLocation;
- private int minThreads = 10;
- private int maxThreads = 500;
+ private int minThreads;
+ private int maxThreads;
//////////////////////////////////////////////////
/////////////// Public methods ///////////////////