-
Notifications
You must be signed in to change notification settings - Fork 0
Add webhooks config endpoint [ACC-2107] #144
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
base: main
Are you sure you want to change the base?
Conversation
35982ce to
edecebb
Compare
d54d0af to
4719f11
Compare
0878b5c to
b52b52e
Compare
| @AutoConfiguration(before = { | ||
| JOOQQueryEngineAutoConfiguration.class, | ||
| }, after = { | ||
| RabbitAutoConfiguration.class, | ||
| }) |
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.
This does not have any conditional annotations that depend on RabbitAutoConfiguration having run, so that dependency is not necessary.
And the before ordering should probably be an after ordering on JOOQQueryEngineAutoConfiguration, because that is the configuration that has a dependency on this. Inverting the ordering like this is a bit confusing
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.
Without after = RabbitAutoConfiguration, the ObjectProvider will always be empty.
With after = JOOQ instead of before, it will have a duplicate bean with the noopEventHandlers.
...a/com/contentgrid/appserver/autoconfigure/query/engine/JOOQQueryEngineAutoConfiguration.java
Outdated
Show resolved
Hide resolved
...-appserver-domain/src/main/java/com/contentgrid/appserver/domain/events/EntityFormatter.java
Outdated
Show resolved
Hide resolved
...query-engine-api/src/main/java/com/contentgrid/appserver/query/engine/api/EventConsumer.java
Outdated
Show resolved
Hide resolved
...query-engine-api/src/main/java/com/contentgrid/appserver/query/engine/api/EventConsumer.java
Outdated
Show resolved
Hide resolved
...-impl-jooq/src/test/java/com/contentgrid/appserver/query/engine/jooq/EventsDispatchTest.java
Outdated
Show resolved
Hide resolved
...-impl-jooq/src/test/java/com/contentgrid/appserver/query/engine/jooq/EventsDispatchTest.java
Outdated
Show resolved
Hide resolved
...-impl-jooq/src/test/java/com/contentgrid/appserver/query/engine/jooq/EventsDispatchTest.java
Outdated
Show resolved
Hide resolved
...rest/src/main/java/com/contentgrid/appserver/rest/ContentGridRestFormatterConfiguration.java
Outdated
Show resolved
Hide resolved
...rest/src/main/java/com/contentgrid/appserver/rest/ContentGridRestFormatterConfiguration.java
Outdated
Show resolved
Hide resolved
e1d3fac to
0bccc84
Compare
8ec1d03 to
be9c940
Compare
be9c940 to
59d42ef
Compare
|



No description provided.