Is this something I need to worry about? ```dev.ce...
# help
c
Is this something I need to worry about?
Copy code
dev.cerbos.sdk.CerbosException: RPC exception [Status{code=DEADLINE_EXCEEDED, description=deadline exceeded after 0.820751800s. Name resolution delay 0.007160300 seconds.
c
Sounds like the client can't connect to Cerbos. Is the service up?
c
Seems to be up, at least when looking at docker containers
The http server is responding well
image.png
c
Is port 3593 exposed to the host? That's the port used by the SDK.
c
Yes,
Copy code
$ docker ps -a
CONTAINER ID   IMAGE                          COMMAND                  CREATED      STATUS                PORTS                              NAMES
e851317e2a02   <http://ghcr.io/cerbos/cerbos:0.31.0|ghcr.io/cerbos/cerbos:0.31.0>   "/cerbos server --co…"   5 days ago   Up 5 days (healthy)   0.0.0.0:3592-3593->3592-3593/tcp   cerbos
c
Interesting... it should be fine then. You could try increasing the timeout in the client builder to see if that makes a difference. There's a
WithTimeout
option for that.
c
That did the trick. I added a 1s timeout and was able to check access
Copy code
{create=false, view:public=false}
👍 1