fix: regression bugs (#6432)

fix: extension delete logic

Signed-off-by: peng wu <2030047311@qq.com>
This commit is contained in:
smartcat999
2025-03-14 14:09:52 +08:00
committed by GitHub
parent a41915a33b
commit e137fb7460

View File

@@ -99,7 +99,7 @@ func (r *ExtensionReconciler) Reconcile(ctx context.Context, req ctrl.Request) (
return ctrl.Result{}, client.IgnoreNotFound(err)
}
if extension.ObjectMeta.DeletionTimestamp.IsZero() {
if !extension.ObjectMeta.DeletionTimestamp.IsZero() {
return r.reconcileDelete(ctx, extension)
}