From 56458410b3b71b3600dbe88e7d1b8b3cca766198 Mon Sep 17 00:00:00 2001 From: Robert Young Date: Fri, 8 Aug 2025 16:28:34 +1200 Subject: [PATCH] Fix quickstart ports Signed-off-by: Robert Young --- documentation/0.14.0/html/proxy-quick-start/content.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/0.14.0/html/proxy-quick-start/content.html b/documentation/0.14.0/html/proxy-quick-start/content.html index f820e670..1261dc87 100644 --- a/documentation/0.14.0/html/proxy-quick-start/content.html +++ b/documentation/0.14.0/html/proxy-quick-start/content.html @@ -159,7 +159,7 @@

5.1. Create a Topic

bin/kafka-topics.sh --create --topic my_topic \
---bootstrap-server localhost:9292
+--bootstrap-server localhost:9192
@@ -171,7 +171,7 @@

5.2. Produce a Message

echo "hello world" | bin/kafka-console-producer.sh --topic my_topic \
---bootstrap-server localhost:9292
+--bootstrap-server localhost:9192
@@ -183,7 +183,7 @@

5.3. Consume the Message

bin/kafka-console-consumer.sh --topic my_topic --from-beginning \
---bootstrap-server localhost:9292
+--bootstrap-server localhost:9192