-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
[release-16.0] vtgate : Disable Automatically setting immediateCallerID to user from static authentication context (#12961) #12984
Conversation
…authentication Context Signed-off-by: Phani Raj <[email protected]>
The client cert common name (if using mTLS) The effective caller id (if --grpc_use_effective_callerid=true) The static auth username (if --mysql_use_static_auth_username=true) Signed-off-by: Phani Raj <[email protected]>
Signed-off-by: Phani Raj <[email protected]>
Signed-off-by: Phani Raj <[email protected]>
Signed-off-by: Phani Raj <[email protected]>
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
If a new flag is being introduced:
If a workflow is added or modified:
Bug fixes
Non-trivial changes
New/Existing features
Backward compatibility
|
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.
Backport looks good to me besides the release notes missing (#12961 (comment)) and grpcvtgateconn.Dial
being undefined in acls_test.go
.
clientCreds := &grpcclient.StaticAuthClientCreds{Username: username, Password: password} | ||
creds := grpc.WithPerRPCCredentials(clientCreds) | ||
dialerFunc := grpcvtgateconn.Dial(creds) | ||
dialerName := t.Name() |
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.
@Phanatic can you fix this?
This backport has been pending for a while. |
Signed-off-by: Manan Gupta <[email protected]>
I was able to fix up the test. |
Description
This is a backport of #12961.