mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-14 08:55:19 +00:00
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…
x
Reference in New Issue
Block a user