]> source.dussan.org Git - sonarqube.git/commitdiff
Commented out synchronizer in BaseIndex
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Wed, 30 Apr 2014 11:53:00 +0000 (13:53 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Wed, 30 Apr 2014 11:53:00 +0000 (13:53 +0200)
sonar-server/src/main/java/org/sonar/server/search/BaseIndex.java

index 339df70ac82ef9d6fd05e96de8790f12964eb5dd..c6e7bcf74c894f33d849c39f245a07a0702744a4 100644 (file)
@@ -31,8 +31,6 @@ import org.elasticsearch.client.Client;
 import org.elasticsearch.common.xcontent.XContentBuilder;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import org.sonar.server.search.IndexAction;
-import org.sonar.server.search.IndexAction.Method;
 import org.sonar.core.cluster.WorkQueue;
 import org.sonar.core.db.Dao;
 import org.sonar.core.db.Dto;
@@ -88,7 +86,7 @@ public abstract class BaseIndex<K extends Serializable, E extends Dto<K>> implem
     this.intializeIndex();
 
     /* Launch synchronization */
-    synchronizer.start();
+//    synchronizer.start();
   }
 
   @Override