From a596aec82cf84d3a84faa9b68829ee1d56b5bc45 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Fri, 24 Apr 2020 19:44:11 +0300 Subject: [PATCH] app/vmselect: fix description for `-search.resetCacheAuthKey` --- 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 1f00c6255..8a3d174f3 100644 --- a/app/vmselect/main.go +++ b/app/vmselect/main.go @@ -24,7 +24,7 @@ var ( maxConcurrentRequests = flag.Int("search.maxConcurrentRequests", getDefaultMaxConcurrentRequests(), "The maximum number of concurrent search requests. "+ "It shouldn't be high, since a single request can saturate all the CPU cores. See also -search.maxQueueDuration") maxQueueDuration = flag.Duration("search.maxQueueDuration", 10*time.Second, "The maximum time the request waits for execution when -search.maxConcurrentRequests limit is reached") - resetCacheAuthKey = flag.String("search.resetCacheAuthKey", "", "Optional authKey for resetting rollup cache via /internal/resetCache call") + resetCacheAuthKey = flag.String("search.resetCacheAuthKey", "", "Optional authKey for resetting rollup cache via /internal/resetRollupResultCache call") ) func getDefaultMaxConcurrentRequests() int {