Skip to content

Commit

Permalink
fix: listen on 0.0.0.0 instead of localhost (#203)
Browse files Browse the repository at this point in the history
Signed-off-by: Alexis Asseman <alexis@semiotic.ai>
  • Loading branch information
aasseman committed Jan 10, 2024
1 parent 23ee12b commit 5099ad1
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
Expand Up @@ -362,7 +362,7 @@ mod tests {

// Start the JSON-RPC client.
let client = HttpClientBuilder::default()
.build(format!("http://127.0.0.1:{}", local_addr.port()))
.build(format!("http://0.0.0.0:{}", local_addr.port()))
.unwrap();

// Create receipts
Expand Down

0 comments on commit 5099ad1

Please sign in to comment.