Skip to content

Commit

Permalink
fix minio store gateway err
Browse files Browse the repository at this point in the history
Signed-off-by: Kartikay <[email protected]>
  • Loading branch information
kartikaysaxena committed Feb 1, 2024
1 parent 94f971b commit a135414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/store/bucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ func (s *BucketStore) getBlock(id ulid.ULID) *bucketBlock {
func (s *BucketStore) addBlock(ctx context.Context, meta *metadata.Meta) (err error) {
var dir string
if s.dir != "" {
dir = filepath.Join(s.dir, meta.ULID.String())
dir = s.dir + "/" + meta.ULID.String()
}
start := time.Now()

Expand Down

0 comments on commit a135414

Please sign in to comment.