This commit is contained in:
Yannick Welsch 2016-11-11 16:09:34 +01:00
parent 1635baf876
commit d195ef258b
1 changed files with 2 additions and 1 deletions

View File

@ -94,7 +94,8 @@ public class IndicesStoreTests extends ESTestCase {
if (state == ShardRoutingState.UNASSIGNED) { if (state == ShardRoutingState.UNASSIGNED) {
unassignedInfo = new UnassignedInfo(UnassignedInfo.Reason.INDEX_CREATED, null); unassignedInfo = new UnassignedInfo(UnassignedInfo.Reason.INDEX_CREATED, null);
} }
routingTable.addShard(TestShardRouting.newShardRouting("test", i, randomAsciiOfLength(10), null, j == 0, state, unassignedInfo)); String relocatingNodeId = state == ShardRoutingState.RELOCATING ? randomAsciiOfLength(10) : null;
routingTable.addShard(TestShardRouting.newShardRouting("test", i, randomAsciiOfLength(10), relocatingNodeId, j == 0, state, unassignedInfo));
} }
} }