Skip to content

Commit

Permalink
fix listing of metas
Browse files Browse the repository at this point in the history
  • Loading branch information
paul1r committed Jan 5, 2024
1 parent 0e1f9a8 commit 5a98698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/stores/shipper/bloomshipper/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func (b *BloomClient) GetMetas(ctx context.Context, params MetaSearchParams) ([]
periodClient := b.periodicObjectClients[periodFrom]
for _, table := range tables {
prefix := filepath.Join(rootFolder, table, params.TenantID, metasFolder)
list, _, err := periodClient.List(ctx, prefix, delimiter)
list, _, err := periodClient.List(ctx, prefix, "")
if err != nil {
return nil, fmt.Errorf("error listing metas under prefix [%s]: %w", prefix, err)
}
Expand Down

0 comments on commit 5a98698

Please sign in to comment.