You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(api): revert scheduler dependency renames that broke existing tests
The per-request scheduler agent renamed get_response_formatting_service
to get_request_formatter and get_scheduler_strategy to get_request_scheduler
in the routers. This broke all existing tests that override these dependencies
via app.dependency_overrides.
Correct approach: keep original dependency names in routers. The new
get_request_formatter and get_request_scheduler dependencies exist in
dependencies.py for routes that explicitly want per-request header support,
but existing routes keep their original dependencies for backward compatibility.
0 commit comments