Skip to content

Commit

Permalink
Use Flaky flag to skip testBookieServerZKSessionExpireBehaviour test (a…
Browse files Browse the repository at this point in the history
…pache#4144)

### Motivation
The `BookieZKExpireTest.testBookieServerZKSessionExpireBehaviour` is a flaky test and the root cause is described in apache#3418.

There is a race condition in the zookeeper reconnection and listener and it is an expected behavior in Bookie.

We created one issue to track this apache#4142.

We can skip this flaky test to unblock the pending PRs.

(cherry picked from commit 11ccebb)
  • Loading branch information
hangc0276 committed Jan 18, 2024
1 parent 5728250 commit 487c941
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import lombok.extern.slf4j.Slf4j;
import org.apache.bookkeeper.bookie.MockUncleanShutdownDetection;
import org.apache.bookkeeper.bookie.TestBookieImpl;
import org.apache.bookkeeper.common.testing.annotations.FlakyTest;
import org.apache.bookkeeper.conf.ServerConfiguration;
import org.apache.bookkeeper.proto.BookieServer;
import org.apache.bookkeeper.stats.NullStatsLogger;
Expand Down Expand Up @@ -121,7 +122,7 @@ conf, new TestBookieImpl(conf),
Attempt to reconnect by BookieStateManager's RegistrationManager listener
will fail (even if retry it many times).
*/
@Test
@FlakyTest(value = "https://github.com/apache/bookkeeper/issues/4142")
@SuppressWarnings("deprecation")
public void testBookieServerZKSessionExpireBehaviour() throws Exception {
// 6000 is minimum due to default tick time
Expand Down

0 comments on commit 487c941

Please sign in to comment.