mirror of https://github.com/kubernetes/kops.git
Merge pull request #15710 from justinsb/fix_gce_message_get_firewall_rule
gce: fix message around getting firewall rule
This commit is contained in:
commit
3db88a33dc
|
@ -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{}
|
||||
|
|
Loading…
Reference in New Issue