1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-02 07:44:51 +00:00

Don't rate limit the sync of handlers

This commit is contained in:
Darren Shepherd
2020-02-06 22:04:22 -07:00
parent ef3920abad
commit 409c47c0cd

View File

@@ -176,7 +176,7 @@ func (g *genericController) addHandler(ctx context.Context, name string, handler
if g.synced {
for _, key := range g.informer.GetStore().ListKeys() {
g.queue.AddRateLimited(key)
g.queue.Add(key)
}
}