Merge pull request #72282 from rkojedzinszky/master

storage_scheduling: retry operation as intended
pull/564/head
Kubernetes Prow Robot 2018-12-23 01:00:09 -08:00 committed by GitHub
commit d476af7c19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ func AddSystemPriorityClasses() genericapiserver.PostStartHookFunc {
} else {
// Unable to get the priority class for reasons other than "not found".
klog.Warningf("unable to get PriorityClass %v: %v. Retrying...", pc.Name, err)
return false, err
return false, nil
}
}
}