Reduce delay

This commit is contained in:
Frank Denis 2021-06-07 13:46:44 +02:00
parent 9e96bbc20b
commit f5a69c3bdc
1 changed files with 1 additions and 1 deletions

View File

@ -706,7 +706,7 @@ func _fetchODoHTargetInfo(proxy *Proxy, name string, stamp stamps.ServerStamp, i
dlog.Warnf("No ODoH relay defined for [%v]", name)
} else {
dlog.Debugf("Pausing after ODoH configuration retrieval")
delay := time.Duration(rand.Intn(10*1000)) * time.Millisecond
delay := time.Duration(rand.Intn(5*1000)) * time.Millisecond
clocksmith.Sleep(time.Duration(delay))
dlog.Debugf("Pausing done")
}