From 0d8c255b8fd423f240f688a5673f5f5be4efbd7b Mon Sep 17 00:00:00 2001 From: Stephane Gamard Date: Mon, 23 Jun 2014 15:05:34 +0200 Subject: [PATCH] SONAR-5407 - fixed ProfileLevel for RuleIndex --- pom.xml | 1 + .../src/main/java/org/sonar/server/rule/index/RuleIndex.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e94e6fb3e05..23f962f32ed 100644 --- a/pom.xml +++ b/pom.xml @@ -37,6 +37,7 @@ plugins/sonar-l10n-en-plugin plugins/sonar-email-notifications-plugin plugins/sonar-xoo-plugin + sonar-runner diff --git a/sonar-server/src/main/java/org/sonar/server/rule/index/RuleIndex.java b/sonar-server/src/main/java/org/sonar/server/rule/index/RuleIndex.java index eb6a4d4eb05..6e6364ccf3d 100644 --- a/sonar-server/src/main/java/org/sonar/server/rule/index/RuleIndex.java +++ b/sonar-server/src/main/java/org/sonar/server/rule/index/RuleIndex.java @@ -313,7 +313,7 @@ public class RuleIndex extends BaseIndex { public Result search(RuleQuery query, QueryOptions options) { - StopWatch profile = profiling.start("es", Profiling.Level.BASIC); + StopWatch profile = profiling.start("es", Profiling.Level.FULL); SearchRequestBuilder esSearch = getClient() .prepareSearch(this.getIndexName()) -- 2.39.5