From 77421e93583b55e64cdcfbcb88b3931258645eed Mon Sep 17 00:00:00 2001 From: Humair Khan Date: Fri, 18 Oct 2024 15:28:50 -0400 Subject: [PATCH] switch dspa resource not found err to debug Signed-off-by: Humair Khan --- controllers/dspipeline_controller.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/controllers/dspipeline_controller.go b/controllers/dspipeline_controller.go index 409907c5..526fbea5 100644 --- a/controllers/dspipeline_controller.go +++ b/controllers/dspipeline_controller.go @@ -179,8 +179,7 @@ func (r *DSPAReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl. dspa := &dspav1alpha1.DataSciencePipelinesApplication{} err := r.Get(ctx, req.NamespacedName, dspa) if err != nil && apierrs.IsNotFound(err) { - // TODO change this to a Debug message when doing https://issues.redhat.com/browse/RHOAIENG-1650 - log.Info("DSPA resource was not found, assuming it was recently deleted, nothing to do here") + log.V(1).Info("DSPA resource was not found, assuming it was recently deleted, nothing to do here") return ctrl.Result{}, nil } else if err != nil { log.Error(err, "Encountered error when fetching DSPA")