diff options
author | Nicolas Bontoux <nicolas.bontoux@sonarsource.com> | 2016-10-26 12:17:04 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-11-02 16:49:17 +0100 |
commit | 8a806eaa8871b70543c6846a1220bd63d7854495 (patch) | |
tree | 38d97f73ad054096db62c22df5265cd0c855a1e7 /sonar-application/src | |
parent | f251a4ff3671c30c2ed51f37bf12c0627008bc75 (diff) | |
download | sonarqube-8a806eaa8871b70543c6846a1220bd63d7854495.tar.gz sonarqube-8a806eaa8871b70543c6846a1220bd63d7854495.zip |
Fix maths in sonar.properties
Diffstat (limited to 'sonar-application/src')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index a39c648033f..cab60b6040b 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -57,7 +57,7 @@ # at the same time, or negative for no limit. # The recommended value is 1.2 * max sizes of HTTP pools. For example if HTTP ports are # enabled with default sizes (50, see property sonar.web.http.maxThreads) -# then sonar.jdbc.maxActive should be 1.2 * (50) = 120. +# then sonar.jdbc.maxActive should be 1.2 * 50 = 60. #sonar.jdbc.maxActive=60 # The maximum number of connections that can remain idle in the |