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: correct route ordering for deprecated session endpoints
Starlette matches routes in registration order. The deprecated
/v1/sessions/session routes were registered after the parameterized
/v1/sessions/{session_id} routes, causing them to never be reached.
Moved literal path routes before parameterized paths so both old
and new API endpoints work correctly.
0 commit comments