Skip to content

Commit

Permalink
fix: change log level since this is a known case (#13029)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorwhitney committed May 24, 2024
1 parent efdae3d commit ca030a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/querier/queryrange/limits.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ func (q *querySizeLimiter) Do(ctx context.Context, r queryrangebase.Request) (qu
// Only support TSDB
schemaCfg, err := q.getSchemaCfg(r)
if err != nil {
level.Error(log).Log("msg", "failed to get schema config, not applying querySizeLimit", "err", err)
level.Warn(log).Log("msg", "failed to get schema config, not applying querySizeLimit", "err", err)
return q.next.Do(ctx, r)
}
if schemaCfg.IndexType != types.TSDBType {
Expand Down

0 comments on commit ca030a5

Please sign in to comment.