Skip to content

Commit

Permalink
Merge pull request kubernetes#15710 from justinsb/fix_gce_message_get…
Browse files Browse the repository at this point in the history
…_firewall_rule

gce: fix message around getting firewall rule
  • Loading branch information
k8s-ci-robot authored Jul 28, 2023
2 parents 223b66c + a15e9d7 commit 3db88a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upup/pkg/fi/cloudup/gcetasks/firewallrule.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{}
Expand Down

0 comments on commit 3db88a3

Please sign in to comment.