Skip to content

Commit

Permalink
fix: DIA-1584: Allow input topic consumers to wait until the data is …
Browse files Browse the repository at this point in the history
…ready
  • Loading branch information
nik committed Nov 7, 2024
1 parent 882ca68 commit 07bdf8a
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 @@ -19,7 +19,7 @@ class Settings(BaseSettings):

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_input_consumer_timeout_ms: int = 15000 # 15 seconds
kafka_output_consumer_timeout_ms: int = 1500 # 1.5 seconds
task_time_limit_sec: int = 60 * 60 * 6 # 6 hours

Expand Down

0 comments on commit 07bdf8a

Please sign in to comment.