Skip to content

Commit c61326f

Browse files
committed
Disable EPOLL in VirtualMultithreadIoEventLoopGroupTest due to known issue
1 parent 6203252 commit c61326f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

core/src/test/java/io/netty/loom/VirtualMultithreadIoEventLoopGroupTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ boolean isLocal() {
7070
boolean isAvailable() {
7171
return switch (this) {
7272
case NIO -> true;
73-
case EPOLL -> Epoll.isAvailable();
73+
// TODO disable EPOLL due to https://github.com/netty/netty/issues/15922
74+
case EPOLL -> false;
7475
case IO_URING -> IoUring.isAvailable();
7576
case LOCAL -> true;
7677
default -> false;

0 commit comments

Comments
 (0)