]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-4488 Make sonar.dryRun.readTimeout property take seconds as input
authorJulien HENRY <julien.henry@sonarsource.com>
Mon, 15 Jul 2013 13:04:06 +0000 (15:04 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Mon, 15 Jul 2013 13:04:06 +0000 (15:04 +0200)
sonar-batch/src/main/java/org/sonar/batch/bootstrap/DryRunDatabase.java

index 9be2c5301a2a97f9b628228396d1d70769f3d00f..4eca672f8072c6c1a1ac40464cd8498ab0d3b9cd 100644 (file)
@@ -99,7 +99,7 @@ public class DryRunDatabase implements BatchComponent {
     if (rootCause instanceof SocketTimeoutException) {
       // Pico will unwrap the first runtime exception
       throw new SonarException(new SonarException(String.format("DryRun database read timed out after %s ms. You can try to increase read timeout with property -D"
-        + CoreProperties.DRY_RUN_READ_TIMEOUT_SEC + "(in seconds)",
+        + CoreProperties.DRY_RUN_READ_TIMEOUT_SEC + " (in seconds)",
           readTimeout), e));
     }
     if (projectKey != null && (rootCause instanceof HttpException) && (((HttpException) rootCause).getResponseCode() == 401)) {