From 76aa79aa3ca45a85eee692c68e68326a0e6eaff7 Mon Sep 17 00:00:00 2001 From: M2ke4U <79621885+MrHua269@users.noreply.github.com> Date: Tue, 30 Jan 2024 21:14:57 +0800 Subject: [PATCH] Correct wrong thread name How careless I could be() --- patches/server/0062-Io_uring-channel-type-support.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/server/0062-Io_uring-channel-type-support.patch b/patches/server/0062-Io_uring-channel-type-support.patch index 8e91a5a..9386745 100644 --- a/patches/server/0062-Io_uring-channel-type-support.patch +++ b/patches/server/0062-Io_uring-channel-type-support.patch @@ -67,7 +67,7 @@ index 81090d1b5d67506268a41c6387a1d45302e88a5c..7bdf3a669c5b7a6b0dd71b94ce56a5be // 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) {