Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions internal/provider/kubernetes/httproute.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ func (r *httpRouteReconciler) Reconcile(ctx context.Context, request reconcile.R
// Remove the route from the watchable map since it's invalid.
r.resources.HTTPRoutes.Delete(routeKey)
r.log.Error(err, "invalid parentRefs for httproute")
return reconcile.Result{}, nil
continue
}
log.Info("validated httproute parentRefs")

Expand All @@ -223,7 +223,7 @@ func (r *httpRouteReconciler) Reconcile(ctx context.Context, request reconcile.R
// a managed Gateway.
log.Info("httproute doesn't reference any managed gateways")
r.resources.HTTPRoutes.Delete(routeKey)
return reconcile.Result{}, nil
continue
}

// only store the resource if it does not exist or it has a newer spec.
Expand Down