cmd/peakHandling.go: do not print what is prefetching
This commit is contained in:
parent
e34dbc0f8b
commit
ed3d0da055
1 changed files with 0 additions and 1 deletions
|
|
@ -62,7 +62,6 @@ func prefetchPeakRequests(peakRequestMap *sync.Map) {
|
|||
sleepBetweenRequests := time.Duration(prefetchInterval*1000/peakRequestLen) * time.Millisecond
|
||||
peakRequestMap.Range(func(key interface{}, value interface{}) bool {
|
||||
r := value.(http.Request)
|
||||
log.Printf("Prefetching %s\n", key)
|
||||
prefetchRequest(&r)
|
||||
peakRequestMap.Delete(key)
|
||||
time.Sleep(sleepBetweenRequests)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue