We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dc2608 commit 2ac5578Copy full SHA for 2ac5578
hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcConnection.java
@@ -239,7 +239,7 @@ public void operationComplete(Future<Boolean> future) throws Exception {
239
p.addBefore(BufferCallBeforeInitHandler.NAME, readTimeoutHandlerName,
240
new ReadTimeoutHandler(RpcClient.DEFAULT_SOCKET_TIMEOUT_READ, TimeUnit.MILLISECONDS))
241
.addBefore(BufferCallBeforeInitHandler.NAME, null, chHandler);
242
- connectionHeaderPromise.addListener(new FutureListener<Boolean>() {
+ NettyFutureUtils.addListener(connectionHeaderPromise, new FutureListener<Boolean>() {
243
@Override
244
public void operationComplete(Future<Boolean> future) throws Exception {
245
if (future.isSuccess()) {
0 commit comments