We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09ab6cc commit 15dc354Copy full SHA for 15dc354
src/shippingservice/src/main.rs
@@ -29,7 +29,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
29
30
info!("OTel pipeline created");
31
let port = env::var("SHIPPING_SERVICE_PORT").expect("$SHIPPING_SERVICE_PORT is not set");
32
- let addr = format!("0.0.0.0:{}", port).parse()?;
+ let addr = format!("[::]:{}", port).parse()?;
33
info!("listening on {}", addr);
34
let shipper = ShippingServer::default();
35
0 commit comments