Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions test/integration/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,11 @@ def start(self):
else:
raise RuntimeError('Failed to start KafkaInstance before max_timeout')

if env_kafka_version() < (0, 9):
# broker requires at least one topic for bootstrap to return brokers list
log.info('Creating _bootstrap_fixup_ topic for broker %s', (env_kafka_version(),))
create_topics(self, ['_bootstrap_fixup_'])

self.out("Done!")
self.running = True

Expand Down
2 changes: 0 additions & 2 deletions test/integration/test_consumer_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@


def test_consumer(consumer):
# The `topic` fixture is included because
# 0.8.2 brokers need a topic to function well
consumer.poll(timeout_ms=500)
assert consumer._client.cluster.brokers()

Expand Down
Loading