Skip to content

Commit 44fe315

Browse files
committed
Allow disabling io_uring transport with a system property
1 parent f920e30 commit 44fe315

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proxy/src/main/java/com/velocitypowered/proxy/network/TransportType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public static TransportType bestType() {
116116
return NIO;
117117
}
118118

119-
if (IoUring.isAvailable()) {
119+
if (IoUring.isAvailable() && !Boolean.getBoolean("velocity.disable-iouring-transport")) {
120120
return IO_URING;
121121
}
122122

0 commit comments

Comments
 (0)