1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

Merge pull request #247 from nirmata/245_bug

handle return
This commit is contained in:
Shivkumar Dudhani 2019-07-31 17:15:39 -07:00 committed by GitHub
commit d69b0b3a47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,8 @@ package violation
import (
"errors"
"github.com/golang/glog"
v1alpha1 "github.com/nirmata/kyverno/pkg/apis/policy/v1alpha1"
lister "github.com/nirmata/kyverno/pkg/client/listers/policy/v1alpha1"
client "github.com/nirmata/kyverno/pkg/dclient"
@ -63,7 +65,10 @@ func (b *builder) Add(infos ...*Info) error {
return nil
}
for _, info := range infos {
return b.processViolation(info)
err := b.processViolation(info)
if err != nil {
glog.Error(err)
}
}
return nil
}