mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-11 16:14:05 -08:00
Merge pull request #3357 from prometheus/revert-3339-3065-remote-read-bypass
Revert "Bypass the fanout storage merging if no remote storage is configured."
This commit is contained in:
commit
323556b025
|
@ -34,10 +34,6 @@ type fanout struct {
|
|||
// NewFanout returns a new fan-out Storage, which proxies reads and writes
|
||||
// through to multiple underlying storages.
|
||||
func NewFanout(logger log.Logger, primary Storage, secondaries ...Storage) Storage {
|
||||
if len(secondaries) == 0 {
|
||||
return primary
|
||||
}
|
||||
|
||||
return &fanout{
|
||||
logger: logger,
|
||||
primary: primary,
|
||||
|
|
Loading…
Reference in a new issue