Skip to content

Commit 11d6e17

Browse files
committed
Update UnusedChannelExceptionHandler to extend inboundHandler
1 parent 6ddf7f1 commit 11d6e17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/UnusedChannelExceptionHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
import static software.amazon.awssdk.http.nio.netty.internal.utils.ChannelUtils.getAttribute;
1919

2020
import io.netty.channel.ChannelHandler;
21-
import io.netty.channel.ChannelHandlerAdapter;
2221
import io.netty.channel.ChannelHandlerContext;
22+
import io.netty.channel.ChannelInboundHandlerAdapter;
2323
import io.netty.handler.timeout.TimeoutException;
2424
import java.io.IOException;
2525
import java.util.Optional;
@@ -36,7 +36,7 @@
3636
*/
3737
@SdkInternalApi
3838
@ChannelHandler.Sharable
39-
public final class UnusedChannelExceptionHandler extends ChannelHandlerAdapter {
39+
public final class UnusedChannelExceptionHandler extends ChannelInboundHandlerAdapter {
4040
public static final UnusedChannelExceptionHandler INSTANCE = new UnusedChannelExceptionHandler();
4141

4242
private static final Logger log = Logger.loggerFor(UnusedChannelExceptionHandler.class);

0 commit comments

Comments
 (0)