From 5430d1125521fd7328f9ba77a64ff8d30cd29f25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Thu, 29 Dec 2022 16:42:59 +0100 Subject: [PATCH] fix: error handling in last scan time parsing (#5808) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché Signed-off-by: Charles-Edouard Brétéché --- pkg/controllers/report/background/controller.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/controllers/report/background/controller.go b/pkg/controllers/report/background/controller.go index fb5ec8d113..1a9db601c3 100644 --- a/pkg/controllers/report/background/controller.go +++ b/pkg/controllers/report/background/controller.go @@ -230,7 +230,8 @@ func (c *controller) updateReport(ctx context.Context, meta metav1.Object, gvk s force = true } else { annTime, err := time.Parse(time.RFC3339, metaAnnotations[annotationLastScanTime]) - if err == nil { + if err != nil { + logger.Error(err, "failed to parse last scan time", "namespace", resource.Namespace, "name", resource.Name) force = true } else { force = time.Now().After(annTime.Add(c.forceDelay))