This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis.git
The following commit(s) were added to refs/heads/master by this push:
new 96227669c RATIS-2498. Mark TestRaftAsyncWithNetty as flaky
96227669c is described below
commit 96227669c490a8354951a1b34a7f495971a3245b
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Thu May 14 14:29:38 2026 +0200
RATIS-2498. Mark TestRaftAsyncWithNetty as flaky
---
.../src/test/java/org/apache/ratis/netty/TestRaftAsyncWithNetty.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/ratis-test/src/test/java/org/apache/ratis/netty/TestRaftAsyncWithNetty.java
b/ratis-test/src/test/java/org/apache/ratis/netty/TestRaftAsyncWithNetty.java
index c3e19a26e..be2f10295 100644
---
a/ratis-test/src/test/java/org/apache/ratis/netty/TestRaftAsyncWithNetty.java
+++
b/ratis-test/src/test/java/org/apache/ratis/netty/TestRaftAsyncWithNetty.java
@@ -20,12 +20,14 @@ package org.apache.ratis.netty;
import org.apache.ratis.RaftAsyncTests;
import org.apache.ratis.client.RaftClient;
import org.apache.ratis.server.RaftServer;
+import org.apache.ratis.test.tag.Flaky;
import org.apache.ratis.util.Slf4jUtils;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Timeout;
import org.slf4j.event.Level;
@Timeout(100)
+@Flaky("RATIS-2498")
public class TestRaftAsyncWithNetty
extends RaftAsyncTests<MiniRaftClusterWithNetty>
implements MiniRaftClusterWithNetty.FactoryGet {