Skip to content

Commit

Permalink
Revert "fix: listen on 0.0.0.0 instead of localhost (#203)"
Browse files Browse the repository at this point in the history
This reverts commit 5099ad1.

Signed-off-by: Alexis Asseman <alexis@semiotic.ai>
  • Loading branch information
aasseman committed Jan 11, 2024
1 parent 5099ad1 commit 9fe2ad2
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://0.0.0.0:{}", local_addr.port()))
.build(format!("http://127.0.0.1:{}", local_addr.port()))
.unwrap();

// Create receipts
Expand Down

0 comments on commit 9fe2ad2

Please sign in to comment.