1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00
This commit is contained in:
shivkumar dudhani 2019-11-18 11:12:36 -08:00
parent 3c3931b67b
commit 09cd524625
2 changed files with 2 additions and 2 deletions

View file

@ -395,7 +395,7 @@ func (pc *PolicyController) Run(workers int, stopCh <-chan struct{}) {
defer glog.Info("Shutting down policy controller")
if !cache.WaitForCacheSync(stopCh, pc.pListerSynced, pc.pvListerSynced, pc.nspvListerSynced) {
glog.Info("failed to sync informer cache")
glog.Error("failed to sync informer cache")
return
}
for i := 0; i < workers; i++ {

View file

@ -143,7 +143,7 @@ func (gen *Generator) Run(workers int, stopCh <-chan struct{}) {
defer glog.Info("Shutting down policy violation generator")
if !cache.WaitForCacheSync(stopCh, gen.pvSynced, gen.nspvSynced) {
glog.Error("event generator: failed to sync informer cache")
glog.Error("policy violation generator: failed to sync informer cache")
}
for i := 0; i < workers; i++ {