Browse Source

Merge pull request #5520 from YaoZengzeng/service

The workqueue of service should be `service` other than `ingress`
pull/5504/head
Frederic Branczyk 6 years ago committed by GitHub
parent
commit
3cffd81035
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discovery/kubernetes/service.go

2
discovery/kubernetes/service.go

@ -43,7 +43,7 @@ func NewService(l log.Logger, inf cache.SharedInformer) *Service {
if l == nil {
l = log.NewNopLogger()
}
s := &Service{logger: l, informer: inf, store: inf.GetStore(), queue: workqueue.NewNamed("ingress")}
s := &Service{logger: l, informer: inf, store: inf.GetStore(), queue: workqueue.NewNamed("service")}
s.informer.AddEventHandler(cache.ResourceEventHandlerFuncs{
AddFunc: func(o interface{}) {
eventCount.WithLabelValues("service", "add").Inc()

Loading…
Cancel
Save