]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5407 - fixed ProfileLevel for RuleIndex
authorStephane Gamard <stephane.gamard@searchbox.com>
Mon, 23 Jun 2014 13:05:34 +0000 (15:05 +0200)
committerStephane Gamard <stephane.gamard@searchbox.com>
Mon, 23 Jun 2014 13:06:21 +0000 (15:06 +0200)
pom.xml
sonar-server/src/main/java/org/sonar/server/rule/index/RuleIndex.java

diff --git a/pom.xml b/pom.xml
index e94e6fb3e0592919624eb9774ccfe6e235e8a4ef..23f962f32ed82e6ce55093c45309edc7b177bd69 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -37,6 +37,7 @@
     <module>plugins/sonar-l10n-en-plugin</module>
     <module>plugins/sonar-email-notifications-plugin</module>
     <module>plugins/sonar-xoo-plugin</module>
+    <module>sonar-runner</module>
   </modules>
 
   <organization>
index eb6a4d4eb054d79646d82794bb50d2d36ecfd0af..6e6364ccf3d6b8770d18b417f71650dd4fbe2009 100644 (file)
@@ -313,7 +313,7 @@ public class RuleIndex extends BaseIndex<Rule, RuleDto, RuleKey> {
 
 
   public Result<Rule> 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())