don't need to log BackupConfiguration not found
This commit is contained in:
parent
0175496bb8
commit
6678bc50e1
@ -62,7 +62,9 @@ func (r *BackupSessionReconciler) Reconcile(ctx context.Context, req ctrl.Reques
|
||||
Namespace: backupSession.Spec.Ref.Namespace,
|
||||
Name: backupSession.Spec.Ref.Name,
|
||||
}, &backupConf); err != nil {
|
||||
r.Log.Error(err, "unable to get BackupConfiguration")
|
||||
if !errors.IsNotFound(err) {
|
||||
r.Log.Error(err, "unable to get BackupConfiguration")
|
||||
}
|
||||
return ctrl.Result{}, err
|
||||
}
|
||||
if !backupSession.ObjectMeta.DeletionTimestamp.IsZero() {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user