diff --git a/pkg/controllers/propagation_reconciler.go b/pkg/controllers/propagation_reconciler.go index 244e997c1..9e8df4aff 100644 --- a/pkg/controllers/propagation_reconciler.go +++ b/pkg/controllers/propagation_reconciler.go @@ -6,8 +6,6 @@ package controllers import ( "context" "fmt" - "time" - corev1 "k8s.io/api/core/v1" apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" @@ -25,10 +23,6 @@ import ( "github.com/cloudoperators/greenhouse/pkg/clientutil" ) -const ( - DefaultRequeueInterval = 10 * time.Minute -) - // PropagationReconciler implements the basic functionality every resource propagation reconciler needs. type PropagationReconciler struct { client.Client @@ -103,7 +97,7 @@ func (r *PropagationReconciler) Reconcile(ctx context.Context, req ctrl.Request) return ctrl.Result{}, err } - return ctrl.Result{RequeueAfter: DefaultRequeueInterval}, nil + return ctrl.Result{}, nil } func (r *PropagationReconciler) reconcileObject(ctx context.Context, restClient client.Client, obj client.Object, clusterName string) error {