File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
service/src/main/java/org/whispersystems/textsecuregcm/redis Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 19
19
import io .lettuce .core .resource .NettyCustomizer ;
20
20
import io .micrometer .core .instrument .Tags ;
21
21
import io .netty .channel .Channel ;
22
- import io .netty .channel .ChannelDuplexHandler ;
23
22
import io .netty .channel .ChannelHandlerContext ;
23
+ import io .netty .channel .ChannelOutboundHandlerAdapter ;
24
24
import io .netty .channel .ChannelPromise ;
25
25
import java .net .SocketAddress ;
26
26
import java .util .Collection ;
@@ -120,7 +120,7 @@ public void afterChannelInitialized(final Channel channel) {
120
120
channel .pipeline ().addBefore (commandHandlerName , null , channelCircuitBreakerHandler );
121
121
}
122
122
123
- static final class ChannelCircuitBreakerHandler extends ChannelDuplexHandler {
123
+ static final class ChannelCircuitBreakerHandler extends ChannelOutboundHandlerAdapter {
124
124
125
125
private static final Logger logger = LoggerFactory .getLogger (ChannelCircuitBreakerHandler .class );
126
126
You can’t perform that action at this time.
0 commit comments