From db303d60b1101fc97ccf72955da0a91e199449c6 Mon Sep 17 00:00:00 2001 From: M2ke4U <79621885+MrHua269@users.noreply.github.com> Date: Tue, 30 Jan 2024 21:15:35 +0800 Subject: [PATCH] Correct wrong thread name How careless I could be() --- patches/server/0057-Io_uring-channel-type-support.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/server/0057-Io_uring-channel-type-support.patch b/patches/server/0057-Io_uring-channel-type-support.patch index b671e29..4c49c1d 100644 --- a/patches/server/0057-Io_uring-channel-type-support.patch +++ b/patches/server/0057-Io_uring-channel-type-support.patch @@ -67,7 +67,7 @@ index 35bf160d10b56fb84d4cb845b61c1d61337e48ca..092883ed467d8f545e91fdd0740d1d63 // Paper end + //Luminol start - io_uring support -+ public static final Supplier SERVER_IO_URING_WORKER_GROUP = Suppliers.memoize(() -> new IOUringEventLoopGroup(0, (new ThreadFactoryBuilder()).setNameFormat("Netty IO_URING Client IO #%d").setDaemon(true).setUncaughtExceptionHandler(new net.minecraft.DefaultUncaughtExceptionHandlerWithName(LOGGER)).build())); ++ public static final Supplier SERVER_IO_URING_WORKER_GROUP = Suppliers.memoize(() -> new IOUringEventLoopGroup(0, (new ThreadFactoryBuilder()).setNameFormat("Netty IO_URING Server IO #%d").setDaemon(true).setUncaughtExceptionHandler(new net.minecraft.DefaultUncaughtExceptionHandlerWithName(LOGGER)).build())); + //Luminol end + public ServerConnectionListener(MinecraftServer server) {