Skip to content

Commit

Permalink
skip tenant don't return
Browse files Browse the repository at this point in the history
  • Loading branch information
poyzannur committed Nov 15, 2023
1 parent 5e99d7b commit 5db8704
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/bloomcompactor/bloomcompactor.go
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,8 @@ func (c *Compactor) compactUsers(ctx context.Context, logger log.Logger, sc stor

// Skip tenant if compaction is not enabled
if !c.limits.BloomCompactorEnabled(tenant) {
return level.Info(tenantLogger).Log("msg", "compaction disabled for tenant")
level.Info(tenantLogger).Log("msg", "compaction disabled for tenant. Skipping.")
continue
}

// Skip this table if it is too new/old for the tenant limits.
Expand Down

0 comments on commit 5db8704

Please sign in to comment.