]> git.lizzy.rs Git - rust.git/commit
Auto merge of #86669 - Smittyvb:satisfy-windows-defender, r=Mark-Simulacrum
authorbors <bors@rust-lang.org>
Mon, 28 Jun 2021 21:37:57 +0000 (21:37 +0000)
committerbors <bors@rust-lang.org>
Mon, 28 Jun 2021 21:37:57 +0000 (21:37 +0000)
commit18db83fde5192252fa17188ebb13bf48679db01f
tree605974850c33d6d5fd46ce259fa38e5e84920dc7
parenta435b49e86d16e98dcc6595dd471f95e823f41aa
parent63cc169d1e300aa3552a6f7a4ce216169d20cdcf
Auto merge of #86669 - Smittyvb:satisfy-windows-defender, r=Mark-Simulacrum

Don't run a publically reachable server in tests

This causes Windows Defender's firewall to pop up during tests to ask if I want to allow the test program to access the public Internet, since it was listening on `0.0.0.0` (the test passes regardless of how you respond to the modal, since the firewall only affects traffic outside of the computer, none of which actually happens in the test). The test server doesn't actually need to be publicly reachable, so this makes it so it is only reachable locally, which makes Windows Defender happy.