-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[POC] Switch from gorilla mux to standard library router #1457
Comments
I would like to check 3 scenarios where Kyma Environment Broker's router is changed to work with the router in brokerapi latest versions:
|
Scenario 1 - brokerapi std lib router - keb gorilla mux |
Scenario 3 - brokerapi chi router - keb std lib ServeMux |
Scenario 2 - brokerapi std lib ServeMux - keb std lib ServeMux |
|
Since replacing the routing library from gorilla/mux to http.ServeMux requires a lot of code changes, we can try to replace gorilla/mux with go-chi/chi as well. |
I posted a summary comment in the issue in brokerapi repository which concludes POC. Closing the issue. |
Description
KEB is now using gorilla/mux as a router library. Due to the router change in brokerapi, we should use go-chi/chi.
Goal
Use latest Broker API library. Remove our fork.
AC
gorilla/mux
Possibility to switch back to
gorilla/mux
The text was updated successfully, but these errors were encountered: