]> source.dussan.org Git - sonarqube.git/commitdiff
Log exception that is ignored because of execution in thread
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 11 Jun 2015 16:05:29 +0000 (18:05 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 11 Jun 2015 16:05:29 +0000 (18:05 +0200)
server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java

index c29cd525cc993caa17930625afe3cf524179eef2..2b34567ebd567a78aa3f9f2cc2a89d64105915ec 100644 (file)
@@ -133,6 +133,7 @@ public class IndexQueue implements ServerComponent, WorkQueue<IndexAction<?>> {
       executorService.shutdown();
       bulkRequestBuilder.setRefresh(hasInlineRefreshRequest);
     } catch (Exception e) {
+      LOGGER.error("Could not execute normalization for stack", e);
       throw new IllegalStateException("Could not execute normalization for stack", e);
     }
   }