-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Remove deprecated function grpc.WithInsecure() #10673
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
Conversation
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.
1b24d7c
to
5c39772
Compare
@mustard-mh Thanks for catching up, I filtered some folders before, and I've updated them. 🙏 |
The function grpc.WithInsecure() is deprecated, use grpc.WithTransportCredentials(insecure.NewCredentials()) instead. Signed-off-by: JenTing Hsiao <[email protected]>
5c39772
to
da40a3c
Compare
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.
Thanks
started the job as gitpod-build-jenting-deprecated-function.3 because the annotations in the pull request description changed |
started the job as gitpod-build-jenting-deprecated-function.4 because the annotations in the pull request description changed |
Description
The function
grpc.WithInsecure()
is deprecated, usegrpc.WithTransportCredentials(insecure.NewCredentials())
instead.Related Issue(s)
Fixes #
How to test
Release Notes
Documentation
None