Skip to content

Commit

Permalink
chore(selftest): lower ping timeout to 10 secs
Browse files Browse the repository at this point in the history
ping command timeout was higher than the iter selftest timeout.
  • Loading branch information
geyslan committed Aug 3, 2023
1 parent 936331a commit acffddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selftest/iter/main.go
Original file line number Diff line number Diff line change
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", "15", "8.8.8.8")
cmd := exec.Command("ping", "-w", "10", "8.8.8.8")
err := cmd.Start()
if err != nil {
exitWithErr(err)
Expand Down

0 comments on commit acffddf

Please sign in to comment.