From d9328594e287fca7f6104bbc0c676124bba8682e Mon Sep 17 00:00:00 2001 From: Matthias Wessendorf Date: Thu, 10 Sep 2020 09:02:51 +0200 Subject: [PATCH] :lipstick: fixing typo (#1541) Signed-off-by: Matthias Wessendorf --- kafka/channel/pkg/reconciler/controller/kafkachannel.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kafka/channel/pkg/reconciler/controller/kafkachannel.go b/kafka/channel/pkg/reconciler/controller/kafkachannel.go index 74147f136d..c100502098 100644 --- a/kafka/channel/pkg/reconciler/controller/kafkachannel.go +++ b/kafka/channel/pkg/reconciler/controller/kafkachannel.go @@ -325,7 +325,7 @@ func (r *Reconciler) reconcileDispatcher(ctx context.Context, scope string, disp } if *d.Spec.Replicas == 0 { - logging.FromContext(ctx).Infof("Dispatcher deployment has 0 replicas. Scaling up deployment to 1 replicas") + logging.FromContext(ctx).Infof("Dispatcher deployment has 0 replica. Scaling up deployment to 1 replica") d.Spec.Replicas = pointer.Int32Ptr(1) needsUpdate = true }