From 43a23c54922ddde5af107e33818d330ec65d552f Mon Sep 17 00:00:00 2001 From: Luiz Cesar Cherri Date: Thu, 12 Mar 2020 18:55:29 -0300 Subject: [PATCH] Removing pipe from KafkaChannel spec (#2303) Removing pipe from KafkaChannel spec due to the following error on broker initialization: - Failed to reconcile trigger channel: json: cannot unmarshal string into Go struct field Channelable.spec of type v1alpha1.ChannelableSpec Which prevents the broker to initialize. --- docs/eventing/channel-based-broker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/eventing/channel-based-broker.md b/docs/eventing/channel-based-broker.md index a47517866..75334a9c9 100644 --- a/docs/eventing/channel-based-broker.md +++ b/docs/eventing/channel-based-broker.md @@ -46,7 +46,7 @@ data: channelTemplateSpec: | apiVersion: messaging.knative.dev/v1alpha1 kind: KafkaChannel - spec: | + spec: numPartitions: 3 replicationFactor: 1 ```