-
Notifications
You must be signed in to change notification settings - Fork 75
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
feat: support using client credentials with emulator #269
Conversation
This seems like a convenient thing to have, what do you think @crwilcox ? |
Thanks for the contribution @paulharter. In order for us to accept this we would need it to pass linting and coverage. The linting can be fixed by running |
@crwilcox I've added a test and linted, I hope it's ok now. Thank you for accepting this, it will make testing much easier. |
Thanks for the contribution @paulharter. This will go out in the next minor release of the library. |
This changes the
grpc.Channel
used when connecting to a local emulator so that the client credentials are used. This allows for testing database rules against the emulator in python.Fixes ##268
thanks