From 937ac8c0602f0ef016365e2edaa092a861ef1775 Mon Sep 17 00:00:00 2001 From: Tom Wiedenbein Date: Fri, 8 Dec 2017 02:11:45 -0800 Subject: [PATCH] fixed bug with initialization of queueconfig QueueConfigs would only ever initialize to the default settings, and would not pick up their respective values from YAML. --- storage/remote/storage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/remote/storage.go b/storage/remote/storage.go index 7fcb60485f..c4cfd72344 100644 --- a/storage/remote/storage.go +++ b/storage/remote/storage.go @@ -70,7 +70,7 @@ func (s *Storage) ApplyConfig(conf *config.Config) error { } newQueues = append(newQueues, NewQueueManager( s.logger, - config.DefaultQueueConfig, + rwConf.QueueConfig, conf.GlobalConfig.ExternalLabels, rwConf.WriteRelabelConfigs, c,