Hi, everyone,
I am trying to connect to the temporal instance, I use for development, launched through docker-compose.
The issue I am having is with the typescript/js client. When the instance is ran locally (localhost), the client has no issues connecting, when I run in on a remote machine on the network, the client crashes with the, presumably, rust, error message:
…
2022-08-05T15:44:40.231Z [INFO] webpack 5.73.0 compiled successfully in 1722 ms
bundled workflow code
error: tonic::transport::Error(Transport, hyper::Error(Connect, ConnectError(“tcp connect error”, Os { code: 61, kind: ConnectionRefused, message: “Connection refused” })))
The Go client has no issues connecting to the very same instance on the remote machine. Only happens in js/ts. Again if the temporal instance is ran on localhost - no issues with js/ts.
additional detail - the client has the same behavior whether ran on Mac or Linux (did not try on windows).
Anyone successfully dealt with this issue?
Thank you!