You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by sh...@apache.org on 2022/10/16 12:09:21 UTC

[kafka] branch trunk updated: MINOR: typo in KafkaChannel (#12757)

This is an automated email from the ASF dual-hosted git repository.

showuon pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 7d67ddce22c MINOR: typo in KafkaChannel (#12757)
7d67ddce22c is described below

commit 7d67ddce22cedb48295da16e6b5d4b6800b61d28
Author: Philip Nee <pn...@confluent.io>
AuthorDate: Sun Oct 16 05:08:53 2022 -0700

    MINOR: typo in KafkaChannel (#12757)
    
    Reviewers: Luke Chen <sh...@gmail.com>, Divij Vaidya <di...@amazon.com>
---
 .../src/main/java/org/apache/kafka/common/network/KafkaChannel.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/clients/src/main/java/org/apache/kafka/common/network/KafkaChannel.java b/clients/src/main/java/org/apache/kafka/common/network/KafkaChannel.java
index bc8228009ae..d9540594eae 100644
--- a/clients/src/main/java/org/apache/kafka/common/network/KafkaChannel.java
+++ b/clients/src/main/java/org/apache/kafka/common/network/KafkaChannel.java
@@ -536,8 +536,8 @@ public class KafkaChannel implements AutoCloseable {
          * Re-authentication is disabled if there is no session expiration time, in
          * which case the SASL handshake network receive will be processed normally,
          * which results in a failure result being sent to the client. Also, no need to
-         * check if we are muted since since we are processing a received packet when we
-         * invoke this.
+         * check if we are muted since we are processing a received packet when we invoke
+         * this.
          */
         if (authenticator.serverSessionExpirationTimeNanos() == null)
             return false;