From f1685fab6df6da339d120a716dd2751fb8e7647f Mon Sep 17 00:00:00 2001 From: Kavin <20838718+FireMasterK@users.noreply.github.com> Date: Wed, 26 Jun 2024 22:59:27 +0530 Subject: [PATCH] Fix typo in example --- python_examples/producer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_examples/producer.py b/python_examples/producer.py index fe412c5..b53b650 100644 --- a/python_examples/producer.py +++ b/python_examples/producer.py @@ -27,7 +27,7 @@ def init_system(client: IggyClient): client.create_topic( stream_id=STREAM_NAME, # Assuming a method exists to create a numeric Identifier. partitions_count=1, - name=STREAM_NAME, + name=TOPIC_NAME, compression_algorithm="none", ) print("Topic was created.")