You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run the workspace as part of an integration test I get this popup on the latest MacOS:
This indicates that the server tries to listen on an exposed network address. Ideally, the server would only run on localhost by default and then this popup wouldn't show.
A quick look at the source shows that the default address is indeed localhost:
@agostbiro Good catch. Yeah, it is indeed annoying and it is better to solve it. I believe it is not RPC that is not running on localhost, but the P2P part of neard. Workspaces-rs sandbox launches neard server and neard uses two TCP ports: (1) RPC, (2) p2p network. Workspaces-rs patches the config to specify the proper RPC IP:address:
Thanks @frol , that was helpful! It turns out that there were two separate causes for the popups, so it was a bit involved to track them down, but the fix is in now: #277
When I run the workspace as part of an integration test I get this popup on the latest MacOS:
This indicates that the server tries to listen on an exposed network address. Ideally, the server would only run on localhost by default and then this popup wouldn't show.
A quick look at the source shows that the default address is indeed localhost:
so there must be something weird going on to get this popup.
Happy to dig in and provide a PR if you think it's important.
The text was updated successfully, but these errors were encountered: