aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorStephane Gamard <stephane.gamard@searchbox.com>2014-05-21 12:10:47 +0200
committerStephane Gamard <stephane.gamard@searchbox.com>2014-05-21 12:10:47 +0200
commit69076e6d1e9122c8d4714f3d83bc9494c86021cc (patch)
tree33b0da279f7a6df75008334940e0f1a0a9daa2e8 /sonar-core
parent0b1535ad27f52406e60a7eece83ba8f47bf78e8f (diff)
downloadsonarqube-69076e6d1e9122c8d4714f3d83bc9494c86021cc.tar.gz
sonarqube-69076e6d1e9122c8d4714f3d83bc9494c86021cc.zip
DAOv.2 - Implicit refresh for Index classes using ES-NRT
Diffstat (limited to 'sonar-core')
-rw-r--r--sonar-core/src/main/java/org/sonar/core/cluster/QueueAction.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/cluster/QueueAction.java b/sonar-core/src/main/java/org/sonar/core/cluster/QueueAction.java
index 60b31ee6baa..ed4cd6bf061 100644
--- a/sonar-core/src/main/java/org/sonar/core/cluster/QueueAction.java
+++ b/sonar-core/src/main/java/org/sonar/core/cluster/QueueAction.java
@@ -23,7 +23,7 @@ import java.util.concurrent.CountDownLatch;
public abstract class QueueAction implements Runnable {
- private CountDownLatch latch;
+ protected CountDownLatch latch;
public QueueAction(CountDownLatch latch){
this.latch = latch;