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 2608d37 commit 27502cfCopy full SHA for 27502cf
litellm/constants.py
@@ -1050,9 +1050,7 @@
1050
PROXY_BUDGET_RESCHEDULER_MAX_TIME = int(
1051
os.getenv("PROXY_BUDGET_RESCHEDULER_MAX_TIME", 605)
1052
)
1053
-# MEMORY LEAK FIX: Increased from 10s to 30s minimum to prevent memory issues with APScheduler
1054
-# Very frequent intervals (<30s) can cause memory leaks in APScheduler's internal functions
1055
-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
1056
1057
# APScheduler Configuration - MEMORY LEAK FIX
1058
# These settings prevent memory leaks in APScheduler's normalize() and _apply_jitter() functions
0 commit comments