We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e64b6b commit a6d5d67Copy full SHA for a6d5d67
src/launchpad/kafka.py
@@ -366,7 +366,7 @@ def get_kafka_config() -> KafkaConfig:
366
group_id=group_id,
367
topics=topics_env.split(","),
368
concurrency=int(os.getenv("KAFKA_CONCURRENCY", "1")),
369
- max_pending_futures=int(os.getenv("KAFKA_MAX_PENDING_FUTURES", "100")),
+ max_pending_futures=int(os.getenv("KAFKA_MAX_PENDING_FUTURES", "0")),
370
auto_offset_reset=os.getenv("KAFKA_AUTO_OFFSET_RESET", "latest"), # latest = skip old messages
371
arroyo_strict_offset_reset=arroyo_strict_offset_reset,
372
security_protocol=os.environ.get("KAFKA_SECURITY_PROTOCOL", "plaintext"),
0 commit comments