aboutsummaryrefslogtreecommitdiffstats
path: root/csit/resources/tests/make_topics.py
diff options
context:
space:
mode:
Diffstat (limited to 'csit/resources/tests/make_topics.py')
-rwxr-xr-xcsit/resources/tests/make_topics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/csit/resources/tests/make_topics.py b/csit/resources/tests/make_topics.py
index 64a230eb..82b1dc39 100755
--- a/csit/resources/tests/make_topics.py
+++ b/csit/resources/tests/make_topics.py
@@ -36,6 +36,6 @@ def create_topic(bootstrap_servers, topic_name, num_partitions=2, replication_fa
if __name__ == '__main__':
topic_name = sys.argv[1]
- bootstrap_servers = 'localhost:29092'
+ bootstrap_servers = sys.argv[2]
create_topic(bootstrap_servers, topic_name)