(ctx context.Context, blockMetas []*backend.BlockMeta, tenantID string)
| 453 | } |
| 454 | |
| 455 | func (w *BackendWorker) compact(ctx context.Context, blockMetas []*backend.BlockMeta, tenantID string) ([]*backend.BlockMeta, error) { |
| 456 | return w.store.CompactWithConfig(ctx, blockMetas, tenantID, &w.cfg.Compactor, w, w) |
| 457 | } |
| 458 | |
| 459 | func (w *BackendWorker) Owns(hash string) bool { |
| 460 | if !w.isSharded() { |
no test coverage detected