mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
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.
This commit is contained in:
parent
e0d917e2f5
commit
937ac8c060
|
@ -70,7 +70,7 @@ func (s *Storage) ApplyConfig(conf *config.Config) error {
|
||||||
}
|
}
|
||||||
newQueues = append(newQueues, NewQueueManager(
|
newQueues = append(newQueues, NewQueueManager(
|
||||||
s.logger,
|
s.logger,
|
||||||
config.DefaultQueueConfig,
|
rwConf.QueueConfig,
|
||||||
conf.GlobalConfig.ExternalLabels,
|
conf.GlobalConfig.ExternalLabels,
|
||||||
rwConf.WriteRelabelConfigs,
|
rwConf.WriteRelabelConfigs,
|
||||||
c,
|
c,
|
||||||
|
|
Loading…
Reference in a new issue