Skip to content

Commit

Permalink
ignore lint issue
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Blaschke <[email protected]>
  • Loading branch information
mblaschke committed Sep 14, 2024
1 parent 968287f commit 3dce23b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion probe.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func handleProbeRequest(w http.ResponseWriter, r *http.Request) {

var results, queryErr = resourceGraphClient.Resources(ctx, Request, nil)
if results.TotalRecords != nil {
resultTotalRecords = int32(*results.TotalRecords)
resultTotalRecords = int32(*results.TotalRecords) //nolint:gosec // RequestOptions.Skip is int32
}

if queryErr == nil {
Expand Down

0 comments on commit 3dce23b

Please sign in to comment.