We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since 4.3.0, EventBus interceptors are managed with AtomicReferenceFieldUpdater.
4.3.0
EventBus
AtomicReferenceFieldUpdater
But io.vertx.core.eventbus.impl.EventBusImpl#removeInboundInterceptor uses the wrong instance:
io.vertx.core.eventbus.impl.EventBusImpl#removeInboundInterceptor
vert.x/src/main/java/io/vertx/core/eventbus/impl/EventBusImpl.java
Lines 76 to 80 in a8d9a16
The text was updated successfully, but these errors were encountered:
EventBus removeInboundInterceptor should use the INBOUND_INTERCEPTORS…
1df277d
…_UPDATER Fixes eclipse-vertx#4422 Otherwise, no inbound interceptor will ever be removed. Signed-off-by: Thomas Segismont <[email protected]>
5f278b4
cdeece4
…_UPDATER (#4423) Fixes #4422 Otherwise, no inbound interceptor will ever be removed. Signed-off-by: Thomas Segismont <[email protected]>
tsegismont
Successfully merging a pull request may close this issue.
Since
4.3.0
,EventBus
interceptors are managed withAtomicReferenceFieldUpdater
.But
io.vertx.core.eventbus.impl.EventBusImpl#removeInboundInterceptor
uses the wrong instance:vert.x/src/main/java/io/vertx/core/eventbus/impl/EventBusImpl.java
Lines 76 to 80 in a8d9a16
The text was updated successfully, but these errors were encountered: