Replies: 3 comments 9 replies
-
Kindly cc @pan3793 |
Beta Was this translation helpful? Give feedback.
4 replies
-
let's fix this by moving sessionMgr.groupProvider inside EngineRef.appUser private[kyuubi] val appUser: String = shareLevel match {
case SERVER => Utils.currentUser
- case GROUP => primaryGroup
+ case GROUP => sessionMgr.groupProvider.primaryGroup(user, conf.getAll.asJava)
case _ => user
} |
Beta Was this translation helpful? Give feedback.
4 replies
-
FYI : Releated issue : #4526 Solved by pr : #4527 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Under version 1.7,
When I start the beeline connection,
The stack trace always appears in the client log, as follows:
I found that it is because after the pr of #3897 is merged, When we create a new EngineRef, no matter which engine share level is used, getGroupNames will always be called.
Therefore, when the user does not use the GROUP mode, is it necessary to prompt the stack message above ?
Beta Was this translation helpful? Give feedback.
All reactions