fix: force LANG=C on MQ 10.0 container to fix JmsReplyToIbmMQTest - #25231
Closed
gnodet wants to merge 1 commit into
Closed
fix: force LANG=C on MQ 10.0 container to fix JmsReplyToIbmMQTest#25231gnodet wants to merge 1 commit into
gnodet wants to merge 1 commit into
Conversation
MQ 10.0 changed the default locale from C to C.utf8, causing the queue manager to use CCSID 1208 (UTF-8) instead of 819 (ISO 8859-1). This change breaks the JMS reply-to test (JmsReplyToIbmMQTest) where the reply message never reaches DEV.QUEUE.2. Force the C locale on the container to preserve the CCSID 819 behavior that was in place with MQ 9.4.x. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
|
🌟 Thank you for your contribution to the Apache Camel project! 🌟 🐫 Apache Camel Committers, please review the following items:
|
Contributor
Author
|
Closing: PR targeting a feature branch doesn't trigger the main build. Will re-create targeting main. |
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.
Summary
Fix the
JmsReplyToIbmMQTest.testCustomJMSReplyToInOuttest failure introduced by the IBM MQ 10.0 upgrade in PR #25107.CtoC.utf8, causing the queue manager to use CCSID 1208 (UTF-8) instead of CCSID 819 (ISO 8859-1)DEV.QUEUE.2LANG=Con the container to preserve the CCSID 819 behavior from MQ 9.4.xThis is a pragmatic fix to validate the CCSID hypothesis. If CI passes with this change, the CCSID locale change is confirmed as the root cause. A proper fix (supporting CCSID 1208 natively) can be investigated as a follow-up.
Test plan
JmsReplyToIbmMQTest.testCustomJMSReplyToInOutshould pass (currently fails 3/3 runs)JmsComponentIbmMQTest.testSendshould continue to passClaude Code on behalf of gnodet