Unverified Commit d744c6ea authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #66085 from liggitt/updatejob

Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. fix updateJob scheduling of resync fixes #66071 ```release-note NONE ```
parents 3da79f5c 6d6842da
...@@ -320,7 +320,7 @@ func (jm *JobController) deletePod(obj interface{}) { ...@@ -320,7 +320,7 @@ func (jm *JobController) deletePod(obj interface{}) {
} }
func (jm *JobController) updateJob(old, cur interface{}) { func (jm *JobController) updateJob(old, cur interface{}) {
oldJob := cur.(*batch.Job) oldJob := old.(*batch.Job)
curJob := cur.(*batch.Job) curJob := cur.(*batch.Job)
// never return error // never return error
......
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