From 9853089143217e302a982ca6a85c34cdec0b7d67 Mon Sep 17 00:00:00 2001 From: Tom Weininger Date: Mon, 16 Sep 2024 13:31:50 +0200 Subject: [PATCH] Fix log message in RSyslog controller There was a copy&paste error. --- controllers/octaviarsyslog_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/octaviarsyslog_controller.go b/controllers/octaviarsyslog_controller.go index 17b152a3..6ef652b4 100644 --- a/controllers/octaviarsyslog_controller.go +++ b/controllers/octaviarsyslog_controller.go @@ -355,7 +355,7 @@ func (r *OctaviaRsyslogReconciler) reconcileNormal(ctx context.Context, instance instance.Status.Conditions.MarkTrue( condition.ReadyCondition, condition.ReadyMessage) } else { - Log.Info("Not all conditions are ready for Amphora controller") + Log.Info("Not all conditions are ready for OctaviaRsyslog controller") } return ctrl.Result{}, nil }