Use dedicated JMS listener connection factory in 6.x - #50105
Open
Moary Chen (moarychan) wants to merge 1 commit into
Open
Use dedicated JMS listener connection factory in 6.x#50105Moary Chen (moarychan) wants to merge 1 commit into
Moary Chen (moarychan) wants to merge 1 commit into
Conversation
* Use dedicated JMS listener connection factory Signed-off-by: Arnab Nandy <arnab_nandy7@yahoo.com> * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Address JMS connection factory review comments Signed-off-by: Arnab Nandy <arnab_nandy7@yahoo.com> * Update Spring changelog for JMS listener fix Signed-off-by: Arnab Nandy <arnab_nandy7@yahoo.com> --------- Signed-off-by: Arnab Nandy <arnab_nandy7@yahoo.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> (cherry picked from commit 214ca38)
Moary Chen (moarychan)
requested review from
a team,
Rujun Chen (rujche) and
Xiaolu Dai (saragluna)
as code owners
August 12, 2026 02:59
|
Azure Pipelines: Successfully started running 3 pipeline(s). 31 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Port #49833
This ports the Service Bus JMS listener connection factory fix to the Spring Boot 3 / Spring Cloud Azure 6.x branch. When
spring.jms.servicebus.pool.enabled=trueandspring.jms.cache.enabled=false, sender operations continue to useJmsPoolConnectionFactory, while queue and topic listener containers use a shared dedicatedServiceBusJmsConnectionFactory. This enables topic subscriptions on the Service Bus Standard tier.Related to #49308.
Testing
Tests run: 2, Failures: 2, Errors: 0; both variants returnedJmsPoolConnectionFactory.Tests run: 2, Failures: 0, Errors: 0; reactor build succeeded.ServiceBusJmsAutoConfigurationTests:Tests run: 53, Failures: 0, Errors: 0, Skipped: 0; build succeeded.All SDK Contribution checklist:
General Guidelines and Best Practices
Testing Guidelines