-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
conflict between 2 routes that shouldn't happen ? #175
Comments
Unfortunately this is correct, which is one of the drawbacks of prefix matching like tries (aka. prefix trees) perform it. After the prefix The design decisions for the current version was, that at any time a URL path can match at most one route. Thus, it is illegal to register |
Thanks for the |
httprouter's pattern matching is difficult. julienschmidt/httprouter#175
httprouter's pattern matching is difficult. julienschmidt/httprouter#175
httprouter's pattern matching is difficult. julienschmidt/httprouter#175
Also adding slightly more explanation about the chart and relevant HTTPScaledObject Signed-off-by: Aaron Schlesinger <aaron@ecomaz.net>
hi
I have routes:
since :name doesn't match / these 2 routes should not conflict but they do. Can you confirm?
The text was updated successfully, but these errors were encountered: