Merge pull request #1118 from munnerz/controller-remove-rate-limit

Only add resources to the rate limited queue when an error occurs
This commit is contained in:
jetstack-bot 2018-11-29 11:26:26 +00:00 committed by GitHub
commit 3fbd2ec79c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,7 @@ func (q *QueuingEventHandler) Enqueue(obj interface{}) {
runtime.HandleError(err)
return
}
q.Queue.AddRateLimited(key)
q.Queue.Add(key)
}
func (q *QueuingEventHandler) OnAdd(obj interface{}) {