Github user afine commented on a diff in the pull request:

    https://github.com/apache/zookeeper/pull/297#discussion_r124907405
  
    --- Diff: 
src/java/main/org/apache/zookeeper/client/ZooKeeperSaslClient.java ---
    @@ -590,18 +590,15 @@ public boolean 
clientTunneledAuthenticationInProgress() {
                     // authentication is either in progress, successful, or 
failed.
     
                     // 1. Authentication hasn't finished yet: we must wait for 
it to do so.
    -                if ((isComplete() == false) &&
    -                    (isFailed() == false)) {
    +                if (!isComplete() && !isFailed()) {
                         return true;
                     }
     
                     // 2. SASL authentication has succeeded or failed..
    -                if (isComplete() || isFailed()) {
    -                    if (gotLastPacket == false) {
    -                        // ..but still in progress, because there is a 
final SASL
    -                        // message from server which must be received.
    +                if (!gotLastPacket) {
    --- End diff --
    
    nvm, did not see the code above. lgtm


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to