From 484c742c31232068567b8d0368f24b0a85fc6557 Mon Sep 17 00:00:00 2001 From: pb Date: Tue, 6 May 2025 18:10:53 +0200 Subject: [PATCH] corrected a typo from a copy/pasted log line --- infrastructure/kubernetes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/kubernetes.go b/infrastructure/kubernetes.go index 0d39b46..c512068 100644 --- a/infrastructure/kubernetes.go +++ b/infrastructure/kubernetes.go @@ -309,7 +309,7 @@ func (k *KubernetesService) CreateAdmiraltyTarget(context context.Context, execu res, err := dynamicClientApply(executionId, "target", gvrTargets, context, target) if err != nil { - return nil, errors.New("Error when trying to apply Source definition :" + err.Error()) + return nil, errors.New("Error when trying to apply Target definition :" + err.Error()) } return res, nil