[minor] sleep 100ms between ping attempts to prevent floods

This commit is contained in:
Julien Vehent 2015-03-18 07:57:44 -04:00
Родитель a4efd70ac0
Коммит f350f5a77c
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -119,6 +119,9 @@ func (r Runner) Run(Args []byte) string {
r.Results.FoundAnything = true
}
pr.Latencies = append(pr.Latencies, latency)
// sleep 100 milliseconds between pings to prevent floods
time.Sleep(100 * time.Millisecond)
}
r.Results.Elements = pr
return r.buildResults()