diff options
author | Pavel Buchnev <[email protected]> | 2022-11-11 16:41:19 +0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-11-11 16:41:19 +0400 |
commit | 1f20b0d50b3019b09b451795c9fd27e75765fee6 (patch) | |
tree | 106854a3d560e080542a918db0bef50e883af7f7 /.rr.yaml | |
parent | 91b5eb38da4e7a825202e4ed23a877caa8e24451 (diff) |
Update .rr.yaml
In some cases `localhost` causes the error below
```
handle_serve_command: Serve error:
endure_start:
endure_serve_internal: Function call error:
endure_call_serve_fn: got initial serve error from the Vertex grpc.Plugin, stopping execution, error: grpc_plugin_serve: address localhost: no suitable address found
```
Diffstat (limited to '.rr.yaml')
-rw-r--r-- | .rr.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1637,7 +1637,7 @@ grpc: # GRPC address to listen # # This option is required - listen: "tcp://localhost:9001" + listen: "tcp://127.0.0.1:9001" # Proto file to use, multiply files supported [SINCE 2.6] # |