i have spicedb running in a container and can conn...
# spicedb
g
i have spicedb running in a container and can connect from another container with:
curl -H "Authorization: Bearer mytoken" -X POST spicedb:50052/v1/schema/read
but if i try to connect to the grpc endpoint via python:
Copy code
Python
client = Client(
    "spicedb:50051",
    insecure_bearer_token_credentials("mytoken"),
)
it says:
Endpoint is neither UDS or TCP loopback address
.