Skip to content

Commit

Permalink
Store: fix forgotten field in store stats merge (thanos-io#6681)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Hoffmann <mhoffm@posteo.de>
  • Loading branch information
MichaHoffmann authored and coleenquadros committed Sep 18, 2023
1 parent b0e18d2 commit a813a0f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/store/bucket.go
Expand Up @@ -3528,6 +3528,7 @@ type queryStats struct {
func (s queryStats) merge(o *queryStats) *queryStats {
s.blocksQueried += o.blocksQueried

s.postingsToFetch += o.postingsToFetch
s.postingsTouched += o.postingsTouched
s.PostingsTouchedSizeSum += o.PostingsTouchedSizeSum
s.postingsFetched += o.postingsFetched
Expand Down

0 comments on commit a813a0f

Please sign in to comment.