We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69cb09c commit 0a52f01Copy full SHA for 0a52f01
src/plugin.rs
@@ -52,6 +52,8 @@ where
52
let (mut health_reporter, health_svc) = health_reporter();
53
health_reporter.set_serving::<Plugin>().await;
54
55
+ // TODO: Add support for abstract unix sockets once supported by tonic.
56
+ // ref. https://github.com/hyperium/tonic/issues/966
57
// avalanchego currently only supports plugins listening on IP address.
58
let listener = TcpListener::bind("127.0.0.1:0").await?;
59
let addr = listener.local_addr()?;
0 commit comments