Skip to content

Commit d2775e4

Browse files
committed
Fix linter error
1 parent 5ed6c0c commit d2775e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/controller/pattern_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ func (r *PatternReconciler) checkSpokeApplicationsGone(appOfApps bool) (bool, er
978978
}
979979

980980
// Make the request
981-
resp, err := httpClient.Do(req)
981+
resp, err := httpClient.Do(req) //nolint:gosec // URL is constructed from a known internal service endpoint
982982
if err != nil {
983983
return false, fmt.Errorf("failed to make HTTP request to search service: %w", err)
984984
}

0 commit comments

Comments
 (0)