Skip to content

Commit

Permalink
test with existing metas
Browse files Browse the repository at this point in the history
  • Loading branch information
poyzannur committed Jan 5, 2024
1 parent b3f949e commit 020b194
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/bloomcompactor/bloomcompactor.go
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ func (c *Compactor) compactUsers(ctx context.Context, logger log.Logger, sc stor
continue
}

// Skip this table if it is too new/old for the tenant limits.
// Skip this table if it is too old for the tenant limits.
now := model.Now()
tableMaxAge := c.limits.BloomCompactorMaxTableAge(tenant)
if tableMaxAge > 0 && tableInterval.Start.Before(now.Add(-tableMaxAge)) {
Expand Down

0 comments on commit 020b194

Please sign in to comment.