Skip to content

Commit

Permalink
more optionalality
Browse files Browse the repository at this point in the history
  • Loading branch information
mdisibio committed Aug 2, 2023
1 parent 7dea128 commit cee39a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tempodb/encoding/vparquet3/copy.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ func CopyBlock(ctx context.Context, fromMeta, toMeta *backend.BlockMeta, from ba
}
}

// Index
// Index (may not exist)
err = cpy(common.NameIndex)
if err != nil {
if err != nil && err != backend.ErrDoesNotExist {
return err
}

Expand Down

0 comments on commit cee39a8

Please sign in to comment.