- 
                Notifications
    
You must be signed in to change notification settings  - Fork 9
 
IGNITE-11346: Remote client authentication failed for the CommandHand… #123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
…ler in the case where it optional on the server
| 
               | 
          ||
| GridNioFuture<?> sndFut = ses.send(msg); | ||
| GridNioFuture<?> sndFut; | ||
| if(sesTok == null && credentials() != null ) { | 
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please reformat code according to codestyle.
| req.requestId(reqId); | ||
| 
               | 
          ||
| sndFut = ses.send(req); | ||
| } else { | 
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please reformat code according to codestyle.
| 
               | 
          ||
| req.requestId(reqId); | ||
| 
               | 
          ||
| sndFut = ses.send(req); | 
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see where you send "msg" in this branch. Is it ignored?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The message is already pended in the original future (for which status is changing to STATE_AUTH_RETRY). So the message is not ignored but postponed.
…ler in the case where it optional on the server Unit test added
…ler in the case where it optional on the server style
https://issues.apache.org/jira/browse/IGNITE-11346