Skip to content

Commit

Permalink
V1.1.7 (#14)
Browse files Browse the repository at this point in the history
* extended errors

* extended errors
  • Loading branch information
nar10z committed Jun 26, 2024
1 parent 56749ac commit 4873dd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accumulator.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func (a *Accumulator[T]) AddSync(ctx context.Context, event T) error {
select {
case err := <-e.fallback:
if err != nil {
return fmt.Errorf("AddSync, check on write: %w", err)
return fmt.Errorf("AddSync, check fallback: %w", err)
}

return nil
Expand Down

0 comments on commit 4873dd2

Please sign in to comment.