Skip to content

Commit

Permalink
fix: fixing log in finalizer.reopenBatch
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolay Nedkov <nikolai_nedkov@yahoo.com>
  • Loading branch information
Psykepro committed Jan 9, 2023
1 parent bfa53aa commit b3c3ccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sequencer/finalizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ func (f *finalizer) reopenBatch(ctx context.Context) {
var err error
f.batch, err = f.newWIPBatch(ctx)
for err != nil {
log.Errorf("failed to create new sequence, Err: %s", err)
log.Errorf("failed to create new work-in-progress batch, Err: %s", err)
f.batch, err = f.newWIPBatch(ctx)
}
}
Expand Down

0 comments on commit b3c3ccf

Please sign in to comment.