Skip to content

Commit

Permalink
fix: Missing error in log
Browse files Browse the repository at this point in the history
  • Loading branch information
jachym-tousek-keboola committed Aug 28, 2024
1 parent b0083da commit 69d1e0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ func (o *operator) closeSlice(ctx context.Context, slice *sliceData) {
defer cancel()

if err := o.closeSyncer.WaitForRevision(ctx, slice.ModRevision); err != nil {
o.logger.Errorf(ctx, `error when waiting for slice closing: %s`)
o.logger.Errorf(ctx, `error when waiting for slice closing: %s`, err.Error())
// continue! we waited long enough, the wait mechanism is probably broken
}

Expand Down

0 comments on commit 69d1e0c

Please sign in to comment.