diff --git a/build.xml b/build.xml index 69c96cf15f..67a758c150 100644 --- a/build.xml +++ b/build.xml @@ -538,7 +538,7 @@ - + diff --git a/test/distributed/org/apache/cassandra/distributed/impl/AbstractCluster.java b/test/distributed/org/apache/cassandra/distributed/impl/AbstractCluster.java index fc70ce1993..753f874571 100644 --- a/test/distributed/org/apache/cassandra/distributed/impl/AbstractCluster.java +++ b/test/distributed/org/apache/cassandra/distributed/impl/AbstractCluster.java @@ -281,6 +281,12 @@ public abstract class AbstractCluster implements ICluster ((IInstance) instance).isValid()); if (config.has(BLANK_GOSSIP)) - cluster.stream().forEach(peer -> GossipHelper.statusToBlank((IInvokableInstance) peer).accept(this)); + peers.forEach(peer -> GossipHelper.statusToBlank((IInvokableInstance) peer).accept(this)); else if (cluster instanceof Cluster) - cluster.stream().forEach(peer -> GossipHelper.statusToNormal((IInvokableInstance) peer).accept(this)); + peers.forEach(peer -> GossipHelper.statusToNormal((IInvokableInstance) peer).accept(this)); else - cluster.stream().forEach(peer -> GossipHelper.unsafeStatusToNormal(this, (IInstance) peer)); + peers.forEach(peer -> GossipHelper.unsafeStatusToNormal(this, (IInstance) peer)); StorageService.instance.setUpDistributedSystemKeyspaces(); StorageService.instance.setNormalModeUnsafe(); diff --git a/test/distributed/org/apache/cassandra/distributed/test/RestartTest.java b/test/distributed/org/apache/cassandra/distributed/test/RestartTest.java new file mode 100644 index 0000000000..4d3049b727 --- /dev/null +++ b/test/distributed/org/apache/cassandra/distributed/test/RestartTest.java @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.cassandra.distributed.test; + +import org.junit.Test; + +import org.apache.cassandra.distributed.Cluster; +import org.apache.cassandra.utils.FBUtilities; + +public class RestartTest extends TestBaseImpl +{ + @Test + public void test() throws Exception + { + try (Cluster cluster = init(Cluster.build(2).withDataDirCount(1).start())) + { + FBUtilities.waitOnFuture(cluster.get(2).shutdown()); + FBUtilities.waitOnFuture(cluster.get(1).shutdown()); + cluster.get(1).startup(); + cluster.get(2).startup(); + } + } +}