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

added log statement

Signed-off-by: NoSkillGirl <singhpooja240393@gmail.com>
This commit is contained in:
NoSkillGirl 2021-10-11 15:24:11 +05:30
parent 8b739453b3
commit 143fe4e3cb
2 changed files with 1 additions and 1 deletions

View file

@ -29,7 +29,6 @@ func (c *Controller) processGR(gr kyverno.GenerateRequest) error {
if retryCount >= 5 {
deleteGR = true
}
// sleepCountInt := int(sleepCountInt64)
}
if deleteGR {

View file

@ -170,6 +170,7 @@ func (c *Controller) deletePolicy(obj interface{}) {
}
for _, gr := range grs {
logger.V(4).Info("enqueue the gr for cleanup", "gr name", gr.Name)
c.addGR(gr)
}
}