jai1 commented on a change in pull request #1821: Closing client when
Proxyconnection is disconnected
URL: https://github.com/apache/incubator-pulsar/pull/1821#discussion_r190060863
##########
File path:
pulsar-proxy/src/main/java/org/apache/pulsar/proxy/server/ProxyConnection.java
##########
@@ -140,6 +140,10 @@ public void channelInactive(ChannelHandlerContext ctx)
throws Exception {
directProxyHandler.outboundChannel.close();
}
+ if (client != null) {
+ client.close();
+ }
Review comment:
The client connection Pool is used by lookupProxyHandler and not the
directProxyHandler.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services