Reinstate catch removed in error in #36033
This commit is contained in:
parent
8191348d6b
commit
3a5dab6d8e
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue