Unverified Commit d476af7c authored by Kubernetes Prow Robot's avatar Kubernetes Prow Robot Committed by GitHub

Merge pull request #72282 from rkojedzinszky/master

storage_scheduling: retry operation as intended
parents 3a6d4c10 a8c70aad
...@@ -93,7 +93,7 @@ func AddSystemPriorityClasses() genericapiserver.PostStartHookFunc { ...@@ -93,7 +93,7 @@ func AddSystemPriorityClasses() genericapiserver.PostStartHookFunc {
} else { } else {
// Unable to get the priority class for reasons other than "not found". // Unable to get the priority class for reasons other than "not found".
klog.Warningf("unable to get PriorityClass %v: %v. Retrying...", pc.Name, err) klog.Warningf("unable to get PriorityClass %v: %v. Retrying...", pc.Name, err)
return false, err return false, nil
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment