pan3793 commented on code in PR #7011: URL: https://github.com/apache/kyuubi/pull/7011#discussion_r2026428588
########## kyuubi-server/src/main/scala/org/apache/kyuubi/session/KyuubiSessionImpl.scala: ########## @@ -174,9 +174,11 @@ class KyuubiSessionImpl( } else { Option(password).filter(_.nonEmpty).getOrElse("anonymous") } - _client = KyuubiSyncThriftClient.createClient(user, passwd, host, port, sessionConf) + val engineClient = + KyuubiSyncThriftClient.createClient(user, passwd, host, port, sessionConf) _engineSessionHandle = - _client.openSession(protocol, user, passwd, openEngineSessionConf) + engineClient.openSession(protocol, user, passwd, openEngineSessionConf) + _client = engineClient Review Comment: thanks for updating, looks good now. -- 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: notifications-unsubscr...@kyuubi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org For additional commands, e-mail: notifications-h...@kyuubi.apache.org