snapshots #10

Merged
jandre merged 69 commits from snapshots into master 2023-04-24 06:49:52 +00:00
Showing only changes of commit 6678bc50e1 - Show all commits

View File

@ -62,7 +62,9 @@ func (r *BackupSessionReconciler) Reconcile(ctx context.Context, req ctrl.Reques
Namespace: backupSession.Spec.Ref.Namespace, Namespace: backupSession.Spec.Ref.Namespace,
Name: backupSession.Spec.Ref.Name, Name: backupSession.Spec.Ref.Name,
}, &backupConf); err != nil { }, &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 return ctrl.Result{}, err
} }
if !backupSession.ObjectMeta.DeletionTimestamp.IsZero() { if !backupSession.ObjectMeta.DeletionTimestamp.IsZero() {