Moved RecoverAfterNodesTests to inherit from AbstractIntegrationTest
This commit is contained in:
parent
0422f75c8d
commit
10de3a7ecb
|
@ -19,11 +19,16 @@
|
||||||
|
|
||||||
package org.elasticsearch.gateway.none;
|
package org.elasticsearch.gateway.none;
|
||||||
|
|
||||||
|
import com.google.common.collect.ImmutableSet;
|
||||||
|
import org.elasticsearch.client.Client;
|
||||||
|
import org.elasticsearch.cluster.block.ClusterBlock;
|
||||||
import org.elasticsearch.cluster.block.ClusterBlockLevel;
|
import org.elasticsearch.cluster.block.ClusterBlockLevel;
|
||||||
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
import org.elasticsearch.gateway.GatewayService;
|
import org.elasticsearch.gateway.GatewayService;
|
||||||
import org.elasticsearch.test.AbstractNodesTests;
|
import org.elasticsearch.test.AbstractIntegrationTest;
|
||||||
import org.junit.After;
|
import org.elasticsearch.test.AbstractIntegrationTest.ClusterScope;
|
||||||
|
import org.elasticsearch.test.AbstractIntegrationTest.Scope;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import static org.elasticsearch.common.settings.ImmutableSettings.settingsBuilder;
|
import static org.elasticsearch.common.settings.ImmutableSettings.settingsBuilder;
|
||||||
|
@ -33,114 +38,124 @@ import static org.hamcrest.Matchers.hasItem;
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class RecoverAfterNodesTests extends AbstractNodesTests {
|
@ClusterScope(scope = Scope.TEST, numNodes = 0)
|
||||||
|
public class RecoverAfterNodesTests extends AbstractIntegrationTest {
|
||||||
|
|
||||||
private final static TimeValue BLOCK_WAIT_TIMEOUT = TimeValue.timeValueSeconds(1);
|
private final static TimeValue BLOCK_WAIT_TIMEOUT = TimeValue.timeValueSeconds(1);
|
||||||
|
|
||||||
@After
|
public ImmutableSet<ClusterBlock> waitForNoBlocksOnNode(TimeValue timeout, Client nodeClient) throws InterruptedException {
|
||||||
public void closeNodes() throws Exception {
|
long start = System.currentTimeMillis();
|
||||||
tearDown();
|
ImmutableSet<ClusterBlock> blocks;
|
||||||
closeAllNodes();
|
do {
|
||||||
|
blocks = nodeClient.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
|
.getState().blocks().global(ClusterBlockLevel.METADATA);
|
||||||
|
}
|
||||||
|
while (!blocks.isEmpty() && (System.currentTimeMillis() - start) < timeout.millis());
|
||||||
|
return blocks;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Client startNode(Settings.Builder settings) {
|
||||||
|
String name = cluster().startNode(settings);
|
||||||
|
return cluster().clientNodeClient(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testRecoverAfterNodes() throws Exception {
|
public void testRecoverAfterNodes() throws Exception {
|
||||||
logger.info("--> start node (1)");
|
logger.info("--> start node (1)");
|
||||||
startNode("node1", settingsBuilder().put("gateway.recover_after_nodes", 3));
|
Client clientNode1 = startNode(settingsBuilder().put("gateway.recover_after_nodes", 3));
|
||||||
assertThat(client("node1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(clientNode1.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
|
|
||||||
logger.info("--> start node (2)");
|
logger.info("--> start node (2)");
|
||||||
startNode("node2", settingsBuilder().put("gateway.recover_after_nodes", 3));
|
Client clientNode2 = startNode(settingsBuilder().put("gateway.recover_after_nodes", 3));
|
||||||
// Sleeping here for the same time that we wait to check for empty blocks
|
|
||||||
Thread.sleep(BLOCK_WAIT_TIMEOUT.millis());
|
Thread.sleep(BLOCK_WAIT_TIMEOUT.millis());
|
||||||
assertThat(client("node1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(clientNode1.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
assertThat(client("node2").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(clientNode2.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
|
|
||||||
logger.info("--> start node (3)");
|
logger.info("--> start node (3)");
|
||||||
startNode("node3", settingsBuilder().put("gateway.recover_after_nodes", 3));
|
Client clientNode3 = startNode(settingsBuilder().put("gateway.recover_after_nodes", 3));
|
||||||
|
|
||||||
assertThat(waitForNoBlocks(BLOCK_WAIT_TIMEOUT, "node1").isEmpty(), equalTo(true));
|
assertThat(waitForNoBlocksOnNode(BLOCK_WAIT_TIMEOUT, clientNode1).isEmpty(), equalTo(true));
|
||||||
assertThat(waitForNoBlocks(BLOCK_WAIT_TIMEOUT, "node2").isEmpty(), equalTo(true));
|
assertThat(waitForNoBlocksOnNode(BLOCK_WAIT_TIMEOUT, clientNode2).isEmpty(), equalTo(true));
|
||||||
assertThat(waitForNoBlocks(BLOCK_WAIT_TIMEOUT, "node3").isEmpty(), equalTo(true));
|
assertThat(waitForNoBlocksOnNode(BLOCK_WAIT_TIMEOUT, clientNode3).isEmpty(), equalTo(true));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testRecoverAfterMasterNodes() throws Exception {
|
public void testRecoverAfterMasterNodes() throws Exception {
|
||||||
logger.info("--> start master_node (1)");
|
logger.info("--> start master_node (1)");
|
||||||
startNode("master1", settingsBuilder().put("gateway.recover_after_master_nodes", 2).put("node.data", false).put("node.master", true));
|
Client master1 = startNode(settingsBuilder().put("gateway.recover_after_master_nodes", 2).put("node.data", false).put("node.master", true));
|
||||||
assertThat(client("master1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(master1.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
|
|
||||||
logger.info("--> start data_node (1)");
|
logger.info("--> start data_node (1)");
|
||||||
startNode("data1", settingsBuilder().put("gateway.recover_after_master_nodes", 2).put("node.data", true).put("node.master", false));
|
Client data1 = startNode(settingsBuilder().put("gateway.recover_after_master_nodes", 2).put("node.data", true).put("node.master", false));
|
||||||
assertThat(client("master1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(master1.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
assertThat(client("data1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(data1.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
|
|
||||||
logger.info("--> start data_node (2)");
|
logger.info("--> start data_node (2)");
|
||||||
startNode("data2", settingsBuilder().put("gateway.recover_after_master_nodes", 2).put("node.data", true).put("node.master", false));
|
Client data2 = startNode(settingsBuilder().put("gateway.recover_after_master_nodes", 2).put("node.data", true).put("node.master", false));
|
||||||
assertThat(client("master1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(master1.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
assertThat(client("data1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(data1.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
assertThat(client("data2").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(data2.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
|
|
||||||
logger.info("--> start master_node (2)");
|
logger.info("--> start master_node (2)");
|
||||||
startNode("master2", settingsBuilder().put("gateway.recover_after_master_nodes", 2).put("node.data", false).put("node.master", true));
|
Client master2 = startNode(settingsBuilder().put("gateway.recover_after_master_nodes", 2).put("node.data", false).put("node.master", true));
|
||||||
assertThat(waitForNoBlocks(BLOCK_WAIT_TIMEOUT, "master1").isEmpty(), equalTo(true));
|
assertThat(waitForNoBlocksOnNode(BLOCK_WAIT_TIMEOUT, master1).isEmpty(), equalTo(true));
|
||||||
assertThat(waitForNoBlocks(BLOCK_WAIT_TIMEOUT, "master2").isEmpty(), equalTo(true));
|
assertThat(waitForNoBlocksOnNode(BLOCK_WAIT_TIMEOUT, master2).isEmpty(), equalTo(true));
|
||||||
assertThat(waitForNoBlocks(BLOCK_WAIT_TIMEOUT, "data1").isEmpty(), equalTo(true));
|
assertThat(waitForNoBlocksOnNode(BLOCK_WAIT_TIMEOUT, data1).isEmpty(), equalTo(true));
|
||||||
assertThat(waitForNoBlocks(BLOCK_WAIT_TIMEOUT, "data2").isEmpty(), equalTo(true));
|
assertThat(waitForNoBlocksOnNode(BLOCK_WAIT_TIMEOUT, data2).isEmpty(), equalTo(true));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testRecoverAfterDataNodes() throws Exception {
|
public void testRecoverAfterDataNodes() throws Exception {
|
||||||
logger.info("--> start master_node (1)");
|
logger.info("--> start master_node (1)");
|
||||||
startNode("master1", settingsBuilder().put("gateway.recover_after_data_nodes", 2).put("node.data", false).put("node.master", true));
|
Client master1 = startNode(settingsBuilder().put("gateway.recover_after_data_nodes", 2).put("node.data", false).put("node.master", true));
|
||||||
assertThat(client("master1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(master1.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
|
|
||||||
logger.info("--> start data_node (1)");
|
logger.info("--> start data_node (1)");
|
||||||
startNode("data1", settingsBuilder().put("gateway.recover_after_data_nodes", 2).put("node.data", true).put("node.master", false));
|
Client data1 = startNode(settingsBuilder().put("gateway.recover_after_data_nodes", 2).put("node.data", true).put("node.master", false));
|
||||||
assertThat(client("master1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(master1.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
assertThat(client("data1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(data1.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
|
|
||||||
logger.info("--> start master_node (2)");
|
logger.info("--> start master_node (2)");
|
||||||
startNode("master2", settingsBuilder().put("gateway.recover_after_data_nodes", 2).put("node.data", false).put("node.master", true));
|
Client master2 = startNode(settingsBuilder().put("gateway.recover_after_data_nodes", 2).put("node.data", false).put("node.master", true));
|
||||||
assertThat(client("master1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(master2.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
assertThat(client("data1").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(data1.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
assertThat(client("master2").admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
assertThat(master2.admin().cluster().prepareState().setLocal(true).execute().actionGet()
|
||||||
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
.getState().blocks().global(ClusterBlockLevel.METADATA),
|
||||||
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
hasItem(GatewayService.STATE_NOT_RECOVERED_BLOCK));
|
||||||
|
|
||||||
logger.info("--> start data_node (2)");
|
logger.info("--> start data_node (2)");
|
||||||
startNode("data2", settingsBuilder().put("gateway.recover_after_data_nodes", 2).put("node.data", true).put("node.master", false));
|
Client data2 = startNode(settingsBuilder().put("gateway.recover_after_data_nodes", 2).put("node.data", true).put("node.master", false));
|
||||||
assertThat(waitForNoBlocks(BLOCK_WAIT_TIMEOUT, "master1").isEmpty(), equalTo(true));
|
assertThat(waitForNoBlocksOnNode(BLOCK_WAIT_TIMEOUT, master1).isEmpty(), equalTo(true));
|
||||||
assertThat(waitForNoBlocks(BLOCK_WAIT_TIMEOUT, "master2").isEmpty(), equalTo(true));
|
assertThat(waitForNoBlocksOnNode(BLOCK_WAIT_TIMEOUT, master2).isEmpty(), equalTo(true));
|
||||||
assertThat(waitForNoBlocks(BLOCK_WAIT_TIMEOUT, "data1").isEmpty(), equalTo(true));
|
assertThat(waitForNoBlocksOnNode(BLOCK_WAIT_TIMEOUT, data1).isEmpty(), equalTo(true));
|
||||||
assertThat(waitForNoBlocks(BLOCK_WAIT_TIMEOUT, "data2").isEmpty(), equalTo(true));
|
assertThat(waitForNoBlocksOnNode(BLOCK_WAIT_TIMEOUT, data2).isEmpty(), equalTo(true));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,6 +96,7 @@ public class TestCluster implements Closeable, Iterable<Client> {
|
||||||
|
|
||||||
private final Map<Integer, Settings> perNodeSettingsMap;
|
private final Map<Integer, Settings> perNodeSettingsMap;
|
||||||
private static final Map<Integer, Settings> EMPTY = Collections.emptyMap();
|
private static final Map<Integer, Settings> EMPTY = Collections.emptyMap();
|
||||||
|
|
||||||
public TestCluster(long clusterSeed, String clusterName) {
|
public TestCluster(long clusterSeed, String clusterName) {
|
||||||
this(clusterSeed, -1, clusterName, EMPTY);
|
this(clusterSeed, -1, clusterName, EMPTY);
|
||||||
}
|
}
|
||||||
|
@ -116,7 +117,7 @@ public class TestCluster implements Closeable, Iterable<Client> {
|
||||||
for (int i = 0; i < sharedNodesSeeds.length; i++) {
|
for (int i = 0; i < sharedNodesSeeds.length; i++) {
|
||||||
sharedNodesSeeds[i] = random.nextLong();
|
sharedNodesSeeds[i] = random.nextLong();
|
||||||
}
|
}
|
||||||
logger.info("Setup TestCluster [{}] with seed [{}] using [{}] nodes" , clusterName, SeedUtils.formatSeed(clusterSeed), numSharedNodes);
|
logger.info("Setup TestCluster [{}] with seed [{}] using [{}] nodes", clusterName, SeedUtils.formatSeed(clusterSeed), numSharedNodes);
|
||||||
this.defaultSettings = ImmutableSettings.settingsBuilder()
|
this.defaultSettings = ImmutableSettings.settingsBuilder()
|
||||||
/* use RAM directories in 10% of the runs */
|
/* use RAM directories in 10% of the runs */
|
||||||
// .put("index.store.type", random.nextInt(10) == 0 ? MockRamIndexStoreModule.class.getName() : MockFSIndexStoreModule.class.getName())
|
// .put("index.store.type", random.nextInt(10) == 0 ? MockRamIndexStoreModule.class.getName() : MockFSIndexStoreModule.class.getName())
|
||||||
|
@ -179,7 +180,7 @@ public class TestCluster implements Closeable, Iterable<Client> {
|
||||||
|
|
||||||
private synchronized NodeAndClient getRandomNodeAndClient(Predicate<NodeAndClient> predicate) {
|
private synchronized NodeAndClient getRandomNodeAndClient(Predicate<NodeAndClient> predicate) {
|
||||||
ensureOpen();
|
ensureOpen();
|
||||||
Collection<NodeAndClient> values = Collections2.filter(nodes.values(), predicate) ;
|
Collection<NodeAndClient> values = Collections2.filter(nodes.values(), predicate);
|
||||||
if (!values.isEmpty()) {
|
if (!values.isEmpty()) {
|
||||||
int whichOne = random.nextInt(values.size());
|
int whichOne = random.nextInt(values.size());
|
||||||
for (NodeAndClient nodeAndClient : values) {
|
for (NodeAndClient nodeAndClient : values) {
|
||||||
|
@ -214,6 +215,7 @@ public class TestCluster implements Closeable, Iterable<Client> {
|
||||||
next.close();
|
next.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private NodeAndClient buildNode(Settings settings) {
|
private NodeAndClient buildNode(Settings settings) {
|
||||||
int ord = nextNodeId.getAndIncrement();
|
int ord = nextNodeId.getAndIncrement();
|
||||||
return buildNode(ord, random.nextLong(), settings);
|
return buildNode(ord, random.nextLong(), settings);
|
||||||
|
@ -278,6 +280,15 @@ public class TestCluster implements Closeable, Iterable<Client> {
|
||||||
return getRandomNodeAndClient(new ClientNodePredicate()).client(random);
|
return getRandomNodeAndClient(new ClientNodePredicate()).client(random);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public synchronized Client clientNodeClient(String nodeName) {
|
||||||
|
ensureOpen();
|
||||||
|
NodeAndClient randomNodeAndClient = nodes.get(nodeName);
|
||||||
|
if (randomNodeAndClient != null) {
|
||||||
|
return randomNodeAndClient.client(random);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
public synchronized Client smartClient() {
|
public synchronized Client smartClient() {
|
||||||
NodeAndClient randomNodeAndClient = getRandomNodeAndClient();
|
NodeAndClient randomNodeAndClient = getRandomNodeAndClient();
|
||||||
if (randomNodeAndClient != null) {
|
if (randomNodeAndClient != null) {
|
||||||
|
@ -638,7 +649,7 @@ public class TestCluster implements Closeable, Iterable<Client> {
|
||||||
ClusterState state = client().admin().cluster().prepareState().execute().actionGet().getState();
|
ClusterState state = client().admin().cluster().prepareState().execute().actionGet().getState();
|
||||||
return state.nodes().masterNode().name();
|
return state.nodes().masterNode().name();
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
logger.warn("Can't fetch cluster state" , e);
|
logger.warn("Can't fetch cluster state", e);
|
||||||
throw new RuntimeException("Can't get master node " + e.getMessage(), e);
|
throw new RuntimeException("Can't get master node " + e.getMessage(), e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue