We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 361d6fe + e04ac66 commit f695c75Copy full SHA for f695c75
pkg/controllers/proxy/network_services_controller.go
@@ -375,6 +375,7 @@ func (nsc *NetworkServicesController) Run(healthChan chan<- *healthcheck.Control
375
}
376
377
case perform := <-nsc.syncChan:
378
+ healthcheck.SendHeartBeat(healthChan, "NSC")
379
switch perform {
380
case synctypeAll:
381
glog.V(1).Info("Performing requested full sync of services")
@@ -391,6 +392,9 @@ func (nsc *NetworkServicesController) Run(healthChan chan<- *healthcheck.Control
391
392
glog.Errorf("Error during ipvs sync in network service controller. Error: " + err.Error())
393
394
395
+ if err == nil {
396
397
+ }
398
399
case <-t.C:
400
glog.V(1).Info("Performing periodic sync of ipvs services")
0 commit comments