Skip to content

Commit

Permalink
CI Test Windows: bind to localhost instead of 0.0.0.0 (#2751)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdallas authored and quentinlesceller committed Apr 12, 2019
1 parent 79c97c3 commit fc5fdc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2p/tests/peer_handshake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fn peer_handshake() {
util::init_test_logger();

let p2p_config = p2p::P2PConfig {
host: "0.0.0.0".parse().unwrap(),
host: "127.0.0.1".parse().unwrap(),
port: open_port(),
peers_allow: None,
peers_deny: None,
Expand Down

0 comments on commit fc5fdc8

Please sign in to comment.