Skip to content

Commit

Permalink
Merge pull request #127 from juandspy/fix-support-for-multi-kafka
Browse files Browse the repository at this point in the history
[CCXDEV-12238] Fix bug with the kafka urls
  • Loading branch information
juandspy authored Dec 7, 2023
2 parents 1b0d813 + 749bfde commit 6dc3be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ccx_messaging/utils/clowder.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def apply_clowder_config(manifest):
kafka_urls = app_common_python.KafkaServers
logger.debug("Kafka URLs: %s", kafka_urls)

kafka_broker_config = {"bootstrap.servers": kafka_urls}
kafka_broker_config = {"bootstrap.servers": ",".join(kafka_urls)}

if clowder_broker_config.cacert:
# Current Kafka library is not able to handle the CA file, only a path to it
Expand Down

0 comments on commit 6dc3be5

Please sign in to comment.