From 825e183d4b84b65c9992e7fbb5a59df4893be267 Mon Sep 17 00:00:00 2001 From: cbarbian-sap Date: Wed, 6 May 2026 18:09:39 +0200 Subject: [PATCH] Fix typo in ready condition value ReadyConditionReasonRetrying --- pkg/component/reconciler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/component/reconciler.go b/pkg/component/reconciler.go index 62096a6..ec4cb8b 100755 --- a/pkg/component/reconciler.go +++ b/pkg/component/reconciler.go @@ -70,7 +70,7 @@ import ( const ( ReadyConditionReasonNew = "FirstSeen" - ReadyConditionReasonRetrying = "Reytrying" + ReadyConditionReasonRetrying = "Retrying" ReadyConditionReasonRestarting = "Restarting" ReadyConditionReasonProcessing = "Processing" ReadyConditionReasonReady = "Ready"