Merge pull request #15710 from justinsb/fix_gce_message_get_firewall_rule

gce: fix message around getting firewall rule
This commit is contained in:
Kubernetes Prow Robot 2023-07-28 14:43:42 -07:00 committed by GitHub
commit 3db88a33dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ func (e *FirewallRule) Find(c *fi.CloudupContext) (*FirewallRule, error) {
if gce.IsNotFound(err) {
return nil, nil
}
return nil, fmt.Errorf("error listing FirewallRules: %v", err)
return nil, fmt.Errorf("getting FirewallRule %q: %w", *e.Name, err)
}
actual := &FirewallRule{}