mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
fix PROXY_BATCH_WRITE_AT
This commit is contained in:
parent
2608d37e8e
commit
27502cfdfd
1 changed files with 1 additions and 3 deletions
|
|
@ -1050,9 +1050,7 @@ PROXY_BATCH_POLLING_INTERVAL = int(os.getenv("PROXY_BATCH_POLLING_INTERVAL", 360
|
|||
PROXY_BUDGET_RESCHEDULER_MAX_TIME = int(
|
||||
os.getenv("PROXY_BUDGET_RESCHEDULER_MAX_TIME", 605)
|
||||
)
|
||||
# MEMORY LEAK FIX: Increased from 10s to 30s minimum to prevent memory issues with APScheduler
|
||||
# Very frequent intervals (<30s) can cause memory leaks in APScheduler's internal functions
|
||||
PROXY_BATCH_WRITE_AT = int(os.getenv("PROXY_BATCH_WRITE_AT", 30)) # in seconds, increased from 10
|
||||
PROXY_BATCH_WRITE_AT = int(os.getenv("PROXY_BATCH_WRITE_AT", 10)) # in seconds, increased from 10
|
||||
|
||||
# APScheduler Configuration - MEMORY LEAK FIX
|
||||
# These settings prevent memory leaks in APScheduler's normalize() and _apply_jitter() functions
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue