mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 02:45:22 +00:00
THRIFT-4506: fix use of assert for correctness in Java SASL negotiation
Client: java
This commit is contained in:
parent
9e0c927214
commit
d973409661
@ -287,7 +287,7 @@ abstract class TSaslTransport extends TTransport {
|
||||
if (message.status == NegotiationStatus.COMPLETE &&
|
||||
getRole() == SaslRole.CLIENT) {
|
||||
LOGGER.debug("{}: All done!", getRole());
|
||||
break;
|
||||
continue;
|
||||
}
|
||||
|
||||
sendSaslMessage(sasl.isComplete() ? NegotiationStatus.COMPLETE : NegotiationStatus.OK,
|
||||
@ -295,8 +295,6 @@ abstract class TSaslTransport extends TTransport {
|
||||
}
|
||||
LOGGER.debug("{}: Main negotiation loop complete", getRole());
|
||||
|
||||
assert sasl.isComplete();
|
||||
|
||||
// If we're the client, and we're complete, but the server isn't
|
||||
// complete yet, we need to wait for its response. This will occur
|
||||
// with ANONYMOUS auth, for example, where we send an initial response
|
||||
|
Loading…
Reference in New Issue
Block a user