-
Notifications
You must be signed in to change notification settings - Fork 0
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
Chore/rework custom mws #19
base: v1
Are you sure you want to change the base?
Conversation
Both used to forward backend status codes when appropriate
go.mod
Outdated
replace ( | ||
github.com/devopsfaith/krakend-amqp v1.4.0 => github.com/openrm/krakend-amqp v0.0.0-20210526165636-5cc9045b5fa6 | ||
github.com/devopsfaith/krakend-cel v1.4.0 => github.com/openrm/krakend-cel v0.0.0-20210719101150-9ec8a72804f1 | ||
github.com/devopsfaith/krakend-jose v1.4.0 => github.com/openrm/krakend-jose v0.0.0-20210719112350-52718b067cbd | ||
github.com/devopsfaith/krakend-martian v1.4.0 => github.com/openrm/krakend-martian v0.0.0-20210718024057-b5801065122d | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of replacing the module import declarations, I used this direction this time. Could minimize the change to the upstream, working well so far
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good idea, it will also help to replace it when doing some local testing
that's awesome, thank you! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you 🙇
60e2140
to
29cc866
Compare
Fixed a few bugs in the AMQP module + alpha, all minor |
@openrm/dev
Reworked the accumulated customization to the community edition. Below is the summary:
The main goal for me was to minimize the future work to sync the repository with the upstream, because the previous version became a complete mess IMO. This meant more separate files for the customized parts, go module replacement for our own forks, etc.