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) {
|
} catch (InterruptedException | BrokenBarrierException e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
joinNode(joinRequest);
|
joinNode(joinRequest);
|
||||||
|
} catch (CoordinationStateRejectedException e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
}, "process " + joinRequest)).collect(Collectors.toList());
|
}, "process " + joinRequest)).collect(Collectors.toList());
|
||||||
|
|
||||||
assertionThread.start();
|
assertionThread.start();
|
||||||
|
|
Loading…
Reference in New Issue