mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-15 23:31:29 +00:00
test(e2e): tighten chaos log-bytes ceiling to 10 KB per request
Local runs measured 3.5 KB per request, so 10 KB keeps close to 3x headroom while tightening from the earlier 12 KB. Co-Authored-By: Claude Code <noreply@anthropic.com>
This commit is contained in:
parent
a1f9f4cbe8
commit
0ea18f28af
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ CHAOS_CPU_PER_REQUEST_RATIO_CEILING: Final = 2.0
|
|||
CHAOS_P50_LATENCY_CEILING_SECONDS: Final = 1.0
|
||||
CHAOS_P90_LATENCY_CEILING_SECONDS: Final = 2.0
|
||||
CHAOS_P99_LATENCY_CEILING_SECONDS: Final = 3.0
|
||||
CHAOS_LOG_BYTES_PER_REQUEST_CEILING: Final = 12_000.0
|
||||
CHAOS_LOG_BYTES_PER_REQUEST_CEILING: Final = 10_000.0
|
||||
|
||||
DRAIN_TIMEOUT_SECONDS: Final = 30.0
|
||||
DRAIN_POLL_SECONDS: Final = 1.0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue