Skip to content

Commit

Permalink
apply feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
rachit77 committed Dec 2, 2024
1 parent 04e667c commit a4fab9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func (db *pgDB) StoreMissingBatchKeys(ctx context.Context, bks []types.BatchKey)
for i, bk := range bks {
batchNumbers[i] = fmt.Sprintf("%d", bk.Number)
}
return fmt.Errorf("failed to store missing batches (BatchKey.Number: %s): %w", strings.Join(batchNumbers, ", "), err)
return fmt.Errorf("failed to store missing batches (batch number: %s): %w", strings.Join(batchNumbers, ", "), err)
}

return nil
Expand Down

0 comments on commit a4fab9f

Please sign in to comment.