[ https://issues.apache.org/jira/browse/KAFKA-3702?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16550484#comment-16550484 ]
ASF GitHub Bot commented on KAFKA-3702: --------------------------------------- rajinisivaram closed pull request #5397: KAFKA-3702: Change log level of SSL close_notify failure URL: https://github.com/apache/kafka/pull/5397 This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/clients/src/main/java/org/apache/kafka/common/network/SslTransportLayer.java b/clients/src/main/java/org/apache/kafka/common/network/SslTransportLayer.java index 838a6a75af3..08a39e71d50 100644 --- a/clients/src/main/java/org/apache/kafka/common/network/SslTransportLayer.java +++ b/clients/src/main/java/org/apache/kafka/common/network/SslTransportLayer.java @@ -177,7 +177,7 @@ public void close() throws IOException { flush(netWriteBuffer); } } catch (IOException ie) { - log.warn("Failed to send SSL Close message", ie); + log.debug("Failed to send SSL Close message", ie); } finally { socketChannel.socket().close(); socketChannel.close(); ---------------------------------------------------------------- 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: us...@infra.apache.org > SslTransportLayer.close() does not shutdown gracefully > ------------------------------------------------------ > > Key: KAFKA-3702 > URL: https://issues.apache.org/jira/browse/KAFKA-3702 > Project: Kafka > Issue Type: Bug > Affects Versions: 0.10.0.0 > Reporter: Rajini Sivaram > Assignee: Rajini Sivaram > Priority: Major > > The warning "Failed to send SSL Close message" occurs very frequently when > SSL connections are closed. Close should write outbound data and shutdown > gracefully. -- This message was sent by Atlassian JIRA (v7.6.3#76005)