Skip to content

Commit 24f564b

Browse files
HumairAKopenshift-merge-bot[bot]
authored andcommitted
switch dspa resource not found err to debug
Signed-off-by: Humair Khan <[email protected]>
1 parent 2af3249 commit 24f564b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

controllers/dspipeline_controller.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ func (r *DSPAReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.
179179
dspa := &dspav1alpha1.DataSciencePipelinesApplication{}
180180
err := r.Get(ctx, req.NamespacedName, dspa)
181181
if err != nil && apierrs.IsNotFound(err) {
182-
// TODO change this to a Debug message when doing https://issues.redhat.com/browse/RHOAIENG-1650
183-
log.Info("DSPA resource was not found, assuming it was recently deleted, nothing to do here")
182+
log.V(1).Info("DSPA resource was not found, assuming it was recently deleted, nothing to do here")
184183
return ctrl.Result{}, nil
185184
} else if err != nil {
186185
log.Error(err, "Encountered error when fetching DSPA")

0 commit comments

Comments
 (0)