You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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
gorillamux
and not re-using existing router.Any idea on how to overcome this issue?
The text was updated successfully, but these errors were encountered: