Merge branch 'main' into NET-10288-Bump-go-to-resolve-CVE-2024-24791

pull/21507/head
sarahalsmiller 5 months ago committed by GitHub
commit 1bcfdf23b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -164,6 +164,12 @@ RETRY_CALL:
} }
return false, err return false, err
} }
// Do not proceed for nil returned services.
if out.NodeServices == nil {
return false, fmt.Errorf("no services found on node")
}
for _, srv := range out.NodeServices.Services { for _, srv := range out.NodeServices.Services {
if serviceID.Matches(srv.CompoundServiceID()) { if serviceID.Matches(srv.CompoundServiceID()) {
return true, nil return true, nil

Loading…
Cancel
Save