Skip to content

Commit

Permalink
fix: ping localhost instead (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
geyslan committed Apr 2, 2024
1 parent 721aff6 commit d37a026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selftest/iter/main.go
Expand Up @@ -51,7 +51,7 @@ func main() {
thisPid := syscall.Getpid()
pids := make(map[int]*os.Process, 0)
for i := 0; i < totalExecs; i++ {
cmd := exec.Command("ping", "-w", "10", "8.8.8.8")
cmd := exec.Command("ping", "-w", "10", "0.0.0.0")
err := cmd.Start()
if err != nil {
exitWithErr(err)
Expand Down

0 comments on commit d37a026

Please sign in to comment.