fix(ci): filter the renamed deployment-selection log line in test_async_fallbacks

398300c4e7 reworded the simple-shuffle INFO line from "get_available_deployment for model: ..." to "Selected deployment for model ...", so the noise filter in test_router_debug_logs.py stopped dropping it and the last three captured records no longer matched the expected fallback sequence. Add the new wording next to the old one, which router.py still emits on other paths
This commit is contained in:
mateo-berri 2026-09-15 03:14:19 -07:00
parent 3ed6c19b8d
commit 2e05b97ba4

View file

@ -86,6 +86,7 @@ def test_async_fallbacks(caplog):
if "Task exception was never retrieved" not in log
and "Task was destroyed but it is pending" not in log
and "get_available_deployment" not in log
and "Selected deployment for model" not in log
and "in the Langfuse queue" not in log
and "Unclosed client session" not in log
and "Unclosed connector" not in log