Hi there!
I have a problem and I think that you can help me with it.
I didn't find any information about priority route matching, so I tried to solve it by ownself but failed. For example we have several match rules:
prefix: /api/location - cluster1
path: /api/location/ - cluster2
With that config all of my requests on /api/location/test/me were sent to cluster1, but cluster 2 has more greedy match. Also I've tried to use regex:
regex: ^\/api\/location\/.*$
and failed too.
Does somebody know a way for "greedy priority" enabling ?
Thank you.