From d37a0260776bc8de3043865a254b2b2eedd76387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geyslan=20Greg=C3=B3rio?= Date: Tue, 2 Apr 2024 09:15:21 -0300 Subject: [PATCH] fix: ping localhost instead (#414) --- selftest/iter/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selftest/iter/main.go b/selftest/iter/main.go index 9b310f3f..e95501e2 100644 --- a/selftest/iter/main.go +++ b/selftest/iter/main.go @@ -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)