dongjoon-hyun commented on code in PR #46506: URL: https://github.com/apache/spark/pull/46506#discussion_r1595899977
########## common/network-common/src/main/java/org/apache/spark/network/client/TransportClientFactory.java: ########## @@ -169,8 +169,10 @@ public TransportClient createClient(String remoteHost, int remotePort, boolean f // this code was able to update things. TransportChannelHandler handler = cachedClient.getChannel().pipeline() .get(TransportChannelHandler.class); - synchronized (handler) { - handler.getResponseHandler().updateTimeOfLastRequest(); + if (handler != null) { Review Comment: Thank you for the info. Yes, it would be a correct fix if we have a matched line error message. -- 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. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org