Commit 0335867b authored by Bruce Ma's avatar Bruce Ma

replace AddRateLimited with Add in enqueue func

parent c48ed1c5
...@@ -342,7 +342,7 @@ func (c *Controller) enqueueFoo(obj interface{}) { ...@@ -342,7 +342,7 @@ func (c *Controller) enqueueFoo(obj interface{}) {
utilruntime.HandleError(err) utilruntime.HandleError(err)
return return
} }
c.workqueue.AddRateLimited(key) c.workqueue.Add(key)
} }
// handleObject will take any resource implementing metav1.Object and attempt // handleObject will take any resource implementing metav1.Object and attempt
......
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