HBASE-16004 Update to Netty 4.1.1

Signed-off-by: stack <stack@apache.org>
This commit is contained in:
Jurriaan Mous 2016-06-10 17:57:42 +02:00 committed by stack
parent 6da6babe4f
commit bd45cf3476
2 changed files with 3 additions and 3 deletions

View File

@ -347,13 +347,13 @@ public class AsyncRpcClient extends AbstractRpcClient {
}
// do not close global EventLoopGroup.
if (!useGlobalEventLoopGroup) {
bootstrap.group().shutdownGracefully();
bootstrap.config().group().shutdownGracefully();
}
}
@Override
public EventLoop getEventExecutor() {
return this.bootstrap.group().next();
return this.bootstrap.config().group().next();
}
/**

View File

@ -1254,7 +1254,7 @@
<clover.version>4.0.3</clover.version>
<jamon-runtime.version>2.4.1</jamon-runtime.version>
<jettison.version>1.3.3</jettison.version>
<netty.version>4.0.30.Final</netty.version>
<netty.version>4.1.1.Final</netty.version>
<netty.hadoop.version>3.6.2.Final</netty.hadoop.version>
<joni.version>2.1.2</joni.version>
<jcodings.version>1.0.8</jcodings.version>