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
We currently route requests first based on the request method, then based on path. This leads to a problem when the combination of method and path in the request doesn't match the expected route, most likely leading to a 404. This is confusing if the path is correct, because we should respond with a 405.
The text was updated successfully, but these errors were encountered:
We currently route requests first based on the request method, then based on path. This leads to a problem when the combination of method and path in the request doesn't match the expected route, most likely leading to a 404. This is confusing if the path is correct, because we should respond with a 405.
The text was updated successfully, but these errors were encountered: