gaoyunhaii commented on a change in pull request #15982:
URL: https://github.com/apache/flink/pull/15982#discussion_r636765339
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/NettyPartitionRequestClient.java
##########
@@ -128,11 +128,18 @@ public void operationComplete(ChannelFuture future)
throws Exception {
if (!future.isSuccess()) {
clientHandler.removeInputChannel(inputChannel);
SocketAddress remoteAddr =
future.channel().remoteAddress();
+ String address =
+ remoteAddr == null
Review comment:
I think perhaps we could direct output the connect id to simplify the
implementation, since the address here should be equals to the one in the
connection id.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]