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
When I make a GET request to /users/12345/resource, the usersHandler is being called, not the resourceHandler. I believe this is happening because the request matches both paths but how can ensure that my request is handled by the correct handler?
The text was updated successfully, but these errors were encountered:
I've come across an issue where my requests are not getting handled as I would expect. In my code I've got something like this:
When I make a
GET
request to/users/12345/resource
, theusersHandler
is being called, not theresourceHandler
. I believe this is happening because the request matches both paths but how can ensure that my request is handled by the correct handler?The text was updated successfully, but these errors were encountered: