Skip to content

Commit

Permalink
fix: run server on localhost to debug M3 networking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
suchapalaver committed May 20, 2024
1 parent 4b83a3a commit 14c91b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_aggregator/src/server.rs
Original file line number Diff line number Diff line change
@@ -224,7 +224,7 @@ pub async fn run_server(
.max_response_body_size(max_response_body_size)
.max_connections(max_concurrent_connections)
.http_only()
.build(format!("0.0.0.0:{}", port))
.build(format!("127.0.0.1:{}", port))
.await?;
let addr = server.local_addr()?;
println!("Listening on: {}", addr);

0 comments on commit 14c91b1

Please sign in to comment.