summaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main
diff options
context:
space:
mode:
authorStephane Gamard <stephane.gamard@searchbox.com>2014-06-23 15:05:34 +0200
committerStephane Gamard <stephane.gamard@searchbox.com>2014-06-23 15:06:21 +0200
commit0d8c255b8fd423f240f688a5673f5f5be4efbd7b (patch)
tree51eaa0e26003ac2c630ca0f9508d99be3751dcfb /sonar-server/src/main
parent56554cc77e5f0eba7fc75e7d6b340cdc7c2e4698 (diff)
downloadsonarqube-0d8c255b8fd423f240f688a5673f5f5be4efbd7b.tar.gz
sonarqube-0d8c255b8fd423f240f688a5673f5f5be4efbd7b.zip
SONAR-5407 - fixed ProfileLevel for RuleIndex
Diffstat (limited to 'sonar-server/src/main')
-rw-r--r--sonar-server/src/main/java/org/sonar/server/rule/index/RuleIndex.java2
1 files changed, 1 insertions, 1 deletions
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<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())