Fix vestigial argument in signature (#1697)

This commit is contained in:
Matt Moore 2020-09-09 18:00:51 -07:00 committed by GitHub
parent b4c9a6da30
commit a79a813ce1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ func RetryErrors(updater func(int) error, fns ...func(error) bool) error {
// RetryTestErrors retries the inner function if it hits an error type that is
// common in our test environments.
func RetryTestErrors(updater func(int) error, fns ...func(error) bool) error {
func RetryTestErrors(updater func(int) error) error {
return RetryErrors(updater,
// Example: conflicts updating `gke-resource-quotas` (implicit on Service/Pod/Ingress creations)
apierrs.IsConflict,