Skip to content

Commit f78f5d9

Browse files
committed
style: fix max char length issue
Signed-off-by: JM Huibonhoa <[email protected]>
1 parent d24099e commit f78f5d9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkg/controller/mcpserver_controller.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,10 @@ func (r *MCPServerReconciler) Reconcile(ctx context.Context, req ctrl.Request) (
102102
// SetupWithManager sets up the controller with the Manager.
103103
func (r *MCPServerReconciler) SetupWithManager(mgr ctrl.Manager) error {
104104
return ctrl.NewControllerManagedBy(mgr).
105-
For(&kagentdevv1alpha1.MCPServer{}, builder.WithPredicates(predicate.GenerationChangedPredicate{}, predicate.LabelChangedPredicate{})).
105+
For(&kagentdevv1alpha1.MCPServer{}, builder.WithPredicates(
106+
predicate.GenerationChangedPredicate{},
107+
predicate.LabelChangedPredicate{},
108+
)).
106109
Owns(&appsv1.Deployment{}, builder.WithPredicates(predicate.ResourceVersionChangedPredicate{})).
107110
Owns(&corev1.Service{}, builder.WithPredicates(predicate.ResourceVersionChangedPredicate{})).
108111
Owns(&corev1.ConfigMap{}, builder.WithPredicates(predicate.ResourceVersionChangedPredicate{})).

0 commit comments

Comments
 (0)