ninja: fix CASSANDRA-15078 NPE

This commit is contained in:
Blake Eggleston 2019-04-25 15:18:07 -07:00
parent 7d2c3c215f
commit 5275141094
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}