Skip to content

Commit

Permalink
fix: Linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Matovidlo committed Nov 18, 2024
1 parent 798bada commit d3a711d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ func (n *Node) cleanJob(ctx context.Context, job keboolaBridgeModel.Job) (err er
}

if id64 < math.MinInt || id64 > math.MaxInt {
err = fmt.Errorf("parsed job ID %d is out of int range", id64)
err = errors.Errorf("parsed job ID %d is out of int range", id64)
n.logger.Error(ctx, err.Error())
return err, false
}
Expand Down

0 comments on commit d3a711d

Please sign in to comment.