We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2e5d08 commit 43507c3Copy full SHA for 43507c3
fluss-server/src/test/java/org/apache/fluss/server/testutils/FlussClusterExtension.java
@@ -869,6 +869,12 @@ public void waitUntilCoordinatorServerElected() {
869
() -> zooKeeperClient.getCoordinatorLeaderAddress().isPresent(),
870
Duration.ofSeconds(10),
871
"Fail to wait coordinator server elected");
872
+ // Sleep 1 second to make sure coordinator server has been started and event processor started.
873
+ try {
874
+ Thread.sleep(1000);
875
+ } catch (InterruptedException e) {
876
+ throw new RuntimeException(e);
877
+ }
878
}
879
880
// --------------------------------------------------------------------------------------------
0 commit comments