moleculer-web icon indicating copy to clipboard operation
moleculer-web copied to clipboard

Route path name clash

Open mikegin opened this issue 2 years ago • 0 comments

Creating two routes one with path /test and the other with path /test2

Make sure the /test route comes before the /test2 route in the routes array.

Then curl <BASE_URL>/test2 will match /test due to url.startsWith(route.path) in the rest request handler.

mikegin avatar Apr 05 '22 17:04 mikegin