Skip to content

Commit

Permalink
fix table deletion in table client for boltdb-shipper (#2960)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepsukhani authored Nov 26, 2020
1 parent 9ba5753 commit ae9c4b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/stores/shipper/table_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (b *boltDBShipperTableClient) Stop() {
}

func (b *boltDBShipperTableClient) DeleteTable(ctx context.Context, name string) error {
objects, dirs, err := b.objectClient.List(ctx, name, delimiter)
objects, dirs, err := b.objectClient.List(ctx, name+delimiter, delimiter)
if err != nil {
return err
}
Expand Down

0 comments on commit ae9c4b8

Please sign in to comment.