You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by bd...@apache.org on 2019/04/25 22:28:47 UTC

[cassandra] branch cassandra-2.2 updated: ninja: fix CASSANDRA-15078 NPE

This is an automated email from the ASF dual-hosted git repository.

bdeggleston pushed a commit to branch cassandra-2.2
in repository https://gitbox.apache.org/repos/asf/cassandra.git


The following commit(s) were added to refs/heads/cassandra-2.2 by this push:
     new 5275141  ninja: fix CASSANDRA-15078 NPE
5275141 is described below

commit 527514109469b925ee310abf06848c8eb484da13
Author: Blake Eggleston <bd...@gmail.com>
AuthorDate: Thu Apr 25 15:18:07 2019 -0700

    ninja: fix CASSANDRA-15078 NPE
---
 .../org/apache/cassandra/distributed/impl/AbstractCluster.java          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/distributed/org/apache/cassandra/distributed/impl/AbstractCluster.java b/test/distributed/org/apache/cassandra/distributed/impl/AbstractCluster.java
index 1dc7a65..c27d9bf 100644
--- a/test/distributed/org/apache/cassandra/distributed/impl/AbstractCluster.java
+++ b/test/distributed/org/apache/cassandra/distributed/impl/AbstractCluster.java
@@ -141,7 +141,7 @@ public abstract class AbstractCluster<I extends IInstance> implements ICluster,
         {
             if (!isShutdown)
                 throw new IllegalStateException();
-            delegate.startup(AbstractCluster.this);
+            delegate().startup(AbstractCluster.this);
             isShutdown = false;
             updateMessagingVersions();
         }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org