Skip to content

Commit

Permalink
Fix partial tile clean up (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCutter authored Aug 30, 2024
1 parent b54ded0 commit 1ab79d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/posix/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ func (s *Storage) StoreTile(_ context.Context, level, index, logSize uint64, til
}

if tileSize == 256 {
partials, err := filepath.Glob(fmt.Sprintf("%s.*", tPath))
partials, err := filepath.Glob(fmt.Sprintf("%s.p/*", tPath))
if err != nil {
return fmt.Errorf("failed to list partial tiles for clean up; %w", err)
}
Expand Down

0 comments on commit 1ab79d3

Please sign in to comment.