From ca46b9a139f50db71bace11e5a5b6b502bd6be24 Mon Sep 17 00:00:00 2001 From: Friedrich Wilken Date: Tue, 19 Dec 2023 10:16:55 +0100 Subject: [PATCH] fix lll --- internal/controller/nats/controller.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/controller/nats/controller.go b/internal/controller/nats/controller.go index 29012af9..5d8a3913 100644 --- a/internal/controller/nats/controller.go +++ b/internal/controller/nats/controller.go @@ -46,7 +46,8 @@ const ( ControllerName = "nats-manager" ManagedByLabelKey = "app.kubernetes.io/managed-by" ManagedByLabelValue = ControllerName - CreationNotAllowedMsg = "Only a single NATS CR with name: %s and namespace: %s is allowed to be created in a Kyma cluster." + CreationNotAllowedMsg = "Only a single NATS CR with name: %s and namespace: " + + "%s is allowed to be created in a Kyma cluster." ) // Reconciler reconciles a NATS object.