From 57606328061c9932fa898d16743ca098dca595f6 Mon Sep 17 00:00:00 2001 From: dotasek Date: Thu, 19 Oct 2023 17:32:34 -0400 Subject: [PATCH] Bump netty transport (#157) --- build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 61f297d..96bc094 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -178,6 +178,9 @@ dependencies { implementation("io.netty:netty-handler:4.1.100.Final") { because("previous versions have a bug impacting this application") } + implementation("io.netty:netty-transport-classes-epoll:4.1.100.Final") { + because("previous versions have a bug impacting this application") + } } }