We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72ca7e4 commit 474d4b5Copy full SHA for 474d4b5
pkg/querier/block.go
@@ -52,7 +52,7 @@ func NewBlockQuerier(s3cfg s3.Config, r prometheus.Registerer) (*BlockQuerier, e
52
stopc := make(chan struct{})
53
go runutil.Repeat(30*time.Second, stopc, func() error {
54
ts := time.Now()
55
- if err := us.SyncStores(context.Background()); err != nil {
+ if err := us.SyncStores(context.Background()); err != nil && err != io.EOF {
56
level.Warn(util.Logger).Log("msg", "sync stores failed", "err", err)
57
}
58
b.syncTimes.Observe(time.Since(ts).Seconds())
0 commit comments