diff options
author | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-05-21 12:10:47 +0200 |
---|---|---|
committer | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-05-21 12:10:47 +0200 |
commit | 69076e6d1e9122c8d4714f3d83bc9494c86021cc (patch) | |
tree | 33b0da279f7a6df75008334940e0f1a0a9daa2e8 /sonar-core | |
parent | 0b1535ad27f52406e60a7eece83ba8f47bf78e8f (diff) | |
download | sonarqube-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.java | 2 |
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; |