Skip to content

Commit

Permalink
fix: validate
Browse files Browse the repository at this point in the history
  • Loading branch information
acha-bill committed Nov 26, 2024
1 parent e4311c4 commit 19e579b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storer/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ func (p *PinIntegrity) Repair(ctx context.Context, logger log.Logger, pin string
if v.Invalid {
logger.Info("repairing invalid chunk (replace)", "address", v.Address)
err = s.Run(ctx, func(st transaction.Store) error {
err = st.ChunkStore().Replace(ctx, ch)
err = st.ChunkStore().Replace(ctx, ch, false)
if err != nil {
return fmt.Errorf("replacing invalid chunk: %w", err)
}
Expand Down

0 comments on commit 19e579b

Please sign in to comment.