Merge pull request #3339 from tomwilkie/3065-remote-read-bypass

Bypass the fanout storage merging if no remote storage is configured.
This commit is contained in:
Fabian Reinartz 2017-10-26 09:14:26 +02:00 committed by GitHub
commit e53040e2ac

View file

@ -34,6 +34,10 @@ 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,