-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add Support for Spring AMQP 2.4 #3584
Comments
Fixed via: 76f77cc |
# Fix deprecation warning for Reactor's `limitRequest()`
Since updating to Spring Boot 2.5.3 (which bumps 5.5.1 to 5.5.2) one of our apps fails to start and report this error message:
I suspect that's related to this change? I note the following related JARs in our app, each of which appear to be latest.
I find the layout of the Spring projects quite complex so I'm not sure where best to report this issue, but figured I'd start here since I think this likely introduced the problem. |
That’s correct : we did it here. We just missed the fact that Rabbit Binder is not going to release until September as a part of Spring Cloud release. See this issue for workaround for time being : #3601. Sorry for inconvenience |
Thanks @artembilan 👍 |
Fixes spring-projects#3601 The issue spring-projects#3584 has introduced a regression when old constructor with an `AbstractMessageListenerContainer` was removed in favor of just `MessageListenerContainer`. But with that change all the dependant projects must be recompiled, which is not a case when Spring Cloud was not released against the latest Spring Boot. **Cherry-pick to `5.4.x`**
Fixes #3601 The issue #3584 has introduced a regression when old constructor with an `AbstractMessageListenerContainer` was removed in favor of just `MessageListenerContainer`. But with that change all the dependant projects must be recompiled, which is not a case when Spring Cloud was not released against the latest Spring Boot. **Cherry-pick to `5.4.x`**
Fixes #3601 The issue #3584 has introduced a regression when old constructor with an `AbstractMessageListenerContainer` was removed in favor of just `MessageListenerContainer`. But with that change all the dependant projects must be recompiled, which is not a case when Spring Cloud was not released against the latest Spring Boot. **Cherry-pick to `5.4.x`**
Make spring-integration-amqp compatible with both spring-amqp 2.3.x and 2.4.x.
The text was updated successfully, but these errors were encountered: