From acffddfccd09a11199cb85094dc0f388040b6571 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geyslan=20Greg=C3=B3rio?= Date: Wed, 2 Aug 2023 18:19:29 -0300 Subject: [PATCH] chore(selftest): lower ping timeout to 10 secs ping command timeout was higher than the iter selftest timeout. --- 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 6b4ba6d0..9b310f3f 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", "15", "8.8.8.8") + cmd := exec.Command("ping", "-w", "10", "8.8.8.8") err := cmd.Start() if err != nil { exitWithErr(err)