koarz commented on code in PR #57364:
URL: https://github.com/apache/doris/pull/57364#discussion_r2472487942
##########
fe/fe-core/src/main/java/org/apache/doris/mysql/MysqlChannel.java:
##########
@@ -638,6 +657,107 @@ private boolean handleUnwrapResult(SSLEngineResult
sslEngineResult) {
}
}
+ private boolean isHandshakeInProgress(HandshakeStatus status) {
+ return status != HandshakeStatus.NOT_HANDSHAKING && status !=
HandshakeStatus.FINISHED;
+ }
+
+ protected void completeHandshake(ByteBuffer pendingOutbound, ByteBuffer
pendingInbound) throws SSLException {
+ if (sslEngine == null) {
+ return;
+ }
+ boolean previousHandshaking = isSslHandshaking;
Review Comment:
same situation,before completeHandshake execute,the isSslMode == true
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]