Hello everyone! I have a question about the Python InsecureClient. In the Authzed API code, I noticed that InsecureClient uses grpc.insecure_channel, which isn’t compatible with asyncio. So I tried to implement an async version of InsecureClient:
https://gist.github.com/chero858/0bd209116039dff7db8e2cc74f56a0d4
Everything worked fine until I had to deal with the LookupResources method, which returns a UnaryStreamCall. I’m now getting a gRPC error: “Request unauthenticated with bearer.”
Does anyone know how to handle this, or is there an existing workaround?