Reinstate catch removed in error in #36033

This commit is contained in:
David Turner 2018-12-01 07:10:19 +00:00
parent 8191348d6b
commit 3a5dab6d8e
1 changed files with 5 additions and 1 deletions

View File

@ -489,7 +489,11 @@ public class NodeJoinTests extends ESTestCase {
} catch (InterruptedException | BrokenBarrierException e) {
throw new RuntimeException(e);
}
joinNode(joinRequest);
try {
joinNode(joinRequest);
} catch (CoordinationStateRejectedException e) {
// ignore
}
}, "process " + joinRequest)).collect(Collectors.toList());
assertionThread.start();