From 4859ca0cda299e31cf61ded7e460155f71b82227 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Sun, 26 May 2019 22:38:58 +0300 Subject: [PATCH] app/vmselect: update comment according to the updated code --- app/vmselect/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/vmselect/main.go b/app/vmselect/main.go index 4561abec4..315eb9c79 100644 --- a/app/vmselect/main.go +++ b/app/vmselect/main.go @@ -42,7 +42,7 @@ func Stop() { // RequestHandler handles remote read API requests for Prometheus func RequestHandler(w http.ResponseWriter, r *http.Request) bool { // Limit the number of concurrent queries. - // Sleep for a second until giving up. This should resolve short bursts in requests. + // Sleep for a while until giving up. This should resolve short bursts in requests. t := time.NewTimer(*maxQueueDuration) select { case concurrencyCh <- struct{}{}: