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:
Tom Wilkie 2017-10-26 16:15:50 +01:00 committed by GitHub
commit 323556b025
1 changed files with 0 additions and 4 deletions

View File

@ -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,