chore: increase lock acquisiton retry interval (#3215)

This commit is contained in:
cthomas
2025-07-07 16:42:37 -07:00
committed by GitHub
parent 4c8e9af4bd
commit d0c5cd5e45

View File

@@ -247,7 +247,7 @@ class Settings(BaseSettings):
# cron job parameters
enable_batch_job_polling: bool = False
poll_running_llm_batches_interval_seconds: int = 5 * 60
poll_lock_retry_interval_seconds: int = 5 * 60
poll_lock_retry_interval_seconds: int = 8 * 60
batch_job_polling_lookback_weeks: int = 2
batch_job_polling_batch_size: Optional[int] = None