]> source.dussan.org Git - sonarqube.git/commitdiff
fixed ITs - IndexQueue can exhaust connection pool (not actually pool-able)
authorStephane Gamard <stephane.gamard@searchbox.com>
Fri, 22 Aug 2014 13:41:03 +0000 (15:41 +0200)
committerStephane Gamard <stephane.gamard@searchbox.com>
Fri, 22 Aug 2014 13:41:13 +0000 (15:41 +0200)
server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java

index 831772c0822e70017cc800c5398f24550d720191..de7636d8596774ab18ec12311927f838e303fa61 100644 (file)
@@ -90,7 +90,7 @@ public class IndexQueue implements ServerComponent, WorkQueue<IndexActionRequest
 
       long refreshTime = this.refreshRequiredIndex(indices);
 
-      LOGGER.info("-- submitted {} items with {}ms in normalization, {}ms indexing and {}ms refresh({}). Total: {}ms",
+      LOGGER.debug("-- submitted {} items with {}ms in normalization, {}ms indexing and {}ms refresh({}). Total: {}ms",
         bulkRequestBuilder.numberOfActions(), normTime, indexTime, refreshTime, indices, (normTime + indexTime + refreshTime));
 
       if (response.hasFailures()) {