From: Simon Brandhof Date: Thu, 11 Jun 2015 16:05:29 +0000 (+0200) Subject: Log exception that is ignored because of execution in thread X-Git-Tag: 5.1.2~9 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6fe3a6534f986875ccfbb1b59a8b6025dc308d64;p=sonarqube.git Log exception that is ignored because of execution in thread --- diff --git a/server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java b/server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java index c29cd525cc9..2b34567ebd5 100644 --- a/server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java +++ b/server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java @@ -133,6 +133,7 @@ public class IndexQueue implements ServerComponent, WorkQueue> { 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); } }