Skip to content

Commit 50e1bd3

Browse files
committed
Run reflector in a goroutine
1 parent 21e04c5 commit 50e1bd3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pkg/apps/strategy/support/lifecycle.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ func newPodWatch(client kcoreclient.PodInterface, namespace, name, resourceVersi
467467
}
468468

469469
queue := cache.NewResyncableFIFO(cache.MetaNamespaceKeyFunc)
470-
cache.NewReflector(podLW, &kapi.Pod{}, queue, 1*time.Minute).Run(stopChannel)
470+
go cache.NewReflector(podLW, &kapi.Pod{}, queue, 1*time.Minute).Run(stopChannel)
471471

472472
return func() *kapi.Pod {
473473
obj := cache.Pop(queue)

pkg/network/common/common.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ func newEventQueue(client kcache.Getter, resourceName ResourceName, expectedType
188188
eventQueue := NewEventQueue(DeletionHandlingMetaNamespaceKeyFunc)
189189
// Repopulate event queue every 30 mins
190190
// Existing items in the event queue will have watch.Modified event type
191-
kcache.NewReflector(lw, expectedType, eventQueue, 30*time.Minute).Run(wait.NeverStop)
191+
go kcache.NewReflector(lw, expectedType, eventQueue, 30*time.Minute).Run(wait.NeverStop)
192192
return eventQueue
193193
}
194194

pkg/router/template/service_lookup.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func NewListWatchServiceLookup(svcGetter kcoreclient.ServicesGetter, resync time
2929
return svcGetter.Services(api.NamespaceAll).Watch(options)
3030
},
3131
}
32-
cache.NewReflector(lw, &api.Service{}, svcStore, resync).Run(wait.NeverStop)
32+
go cache.NewReflector(lw, &api.Service{}, svcStore, resync).Run(wait.NeverStop)
3333

3434
return &serviceLWLookup{
3535
store: svcStore,

0 commit comments

Comments
 (0)