Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MINOR: Need to split the controller bootstrap servers on ',' in list …
…comprehenson (#17183) Kafka Streams system tests were failing with this error: Failed to parse host name from entry 3001@d for the configuration controller.quorum.voters. Each entry should be in the form `{id}@{host}:{port}`. The cause is that in kafka.py line 876, we create a delimited string from a list comprehension, but the input is a string itself, so each character gets appended vs. the bootstrap server string of host:port. To fix this, this PR adds split(',') to controller_quorum_bootstrap_servers. Note that this only applies when dynamicRaftQuorum=False Reviewers: Alyssa Huang <[email protected]>, Chia-Ping Tsai <[email protected]>
- Loading branch information