Hi,
I am using this middleware and I am mounting my api server under specific sub-path (using echo.Group("/subpath")), when using the subpath I am getting an error of no matching operation was found.
Without the sub-path it works.
Looks like it's happening because we are constructing a new router with gorillamux and not re-using existing router.
Any idea on how to overcome this issue?
Hi,
I am using this middleware and I am mounting my api server under specific sub-path (using
echo.Group("/subpath")), when using the subpath I am getting an error ofno matching operation was found.Without the sub-path it works.
Looks like it's happening because we are constructing a new router with
gorillamuxand not re-using existing router.Any idea on how to overcome this issue?