I have added this route to test with, but the path matching appears to be case-sensitive.
route add orders /orders http://localhost:8080/ tags "urlprefix-/orders"
A request to this url works correctly: http://localhost:9999/orders
However, a request to this URL: http://localhost:9999/Orders
logs this warning: [WARN] No route for localhost:9999/Orders
Is it possible for the path matching to be case-insensitive? This would lessen the burden on the client to request the route with matching case.
I have added this route to test with, but the path matching appears to be case-sensitive.
route add orders /orders http://localhost:8080/ tags "urlprefix-/orders"
A request to this url works correctly: http://localhost:9999/orders
However, a request to this URL: http://localhost:9999/Orders
logs this warning: [WARN] No route for localhost:9999/Orders
Is it possible for the path matching to be case-insensitive? This would lessen the burden on the client to request the route with matching case.