-
Notifications
You must be signed in to change notification settings - Fork 78
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
fix: move to using insecure grpc channels with emulator #402
fix: move to using insecure grpc channels with emulator #402
Conversation
return grpc.aio.secure_channel( | ||
self._emulator_host, self._local_composite_credentials() | ||
) | ||
return grpc.aio.insecure_channel(self._emulator_host) |
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.
Can we possibly have our cake and eat it too by introducing another environment variable for these custom credentials?
@paulharter FYI. This should still support your use case, but as there was no test added to demonstrate your complete use, I am unsure. Reach out if this doesn't work and we can find a way to support both use case :) |
8064453
to
b2af8b2
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.
LGTM
Related to #359
On windows, configuring a secure channel with credentials will not connect.