Skip to content

Commit

Permalink
fix kafka bootstrap servers for native dev (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-bernstein authored Jul 18, 2024
1 parent 3c6ec22 commit fd34f49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Settings(BaseSettings):
https://docs.pydantic.dev/latest/concepts/pydantic_settings/#field-value-priority
"""

kafka_bootstrap_servers: Union[str, List[str]] = "localhost:9092"
kafka_bootstrap_servers: Union[str, List[str]] = "localhost:9093"
kafka_retention_ms: int = 180000 # 30 minutes
kafka_input_consumer_timeout_ms: int = 1500 # 1.5 seconds
kafka_output_consumer_timeout_ms: int = 1500 # 1.5 seconds
Expand Down

0 comments on commit fd34f49

Please sign in to comment.