forked from apache/activemq
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Update branch up to OSS 6.1.4, included post release commit and update poms to 6.1.5-TT.1-SNAPSHOT #98
Merged
cesarhernandezgt
merged 52 commits into
tomitribe:activemq-6.1.x-TT.x
from
cesarhernandezgt:activemq-6.1.x-TT.x-patch
Dec 2, 2024
Merged
Update branch up to OSS 6.1.4, included post release commit and update poms to 6.1.5-TT.1-SNAPSHOT #98
cesarhernandezgt
merged 52 commits into
tomitribe:activemq-6.1.x-TT.x
from
cesarhernandezgt:activemq-6.1.x-TT.x-patch
Dec 2, 2024
Conversation
This file contains 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
(cherry picked from commit 7b49d0c)
This method always throws an exception so it should be removed and no longer used. Places in PageFile that called the method have been updated to either remove the usage or throw an error. (cherry picked from commit 5f79b65)
This commit fixes conversion of messages that are sent or received using Stomp when the body contains characters that require 4 bytes for encoding using standard UTF-8. ActiveMQ and OpenWire currently use a modified UTF-8 encoding that only uses 3 bytes so the conversion previously was breaking because the body was encoded using standard JDK UTF-8 encoding and set directly on an ActiveMQText message which was leading to decoding errors later when the ActiveMQMessage tried to decode using the modified encoder. The reverse was also was true and was breaking in some cases. The fix now makes sure to correctly decode the Stomp message back to a String first and set that on the ActiveMQ message so it can be re-encoded correctly. The reverse is fixed as well so both conversion from Stomp -> OpenWire and OpenWire -> Stomp work. Tests have been added for Stomp -> OpenWire, OpenWire -> Stomp, and Stomp -> Stomp which is really Stomp -> OpenWire -> Stomp. (cherry picked from commit 3ddf515)
The connection receive was out of order and causing failures in some of the Stomp tests like StompNIOSSL (cherry picked from commit f5fb6c9)
…ageTest (cherry picked from commit f914001)
(cherry picked from commit 2dab161)
(cherry picked from commit 254d0fa)
(cherry picked from 6001e81)
(cherry picked from commit f03443e)
…additional.x options. (cherry picked from commit f1379cd)
(cherry picked from commit 736eb46)
(cherry picked from commit a86cee6)
(cherry picked from commit ada4041)
(cherry-picked from commit 7bc8b67)
(cherry picked from commit 1428cf8)
(cherry picked from commit 3d36570)
(cherry picked from fba0a2e)
(cherry picked from commit c33cdaf)
(cherry picked from commit 50a73f9)
(cherry picked from commit 4d0eb77)
(cherry picked from commit 8613198)
(cherry picked from commit 4d75b20)
(cherry picked from commit d2ae90d)
(cherry picked from commit ee271b6)
(cherry picked from commit ccfb85f)
(cherry picked from commit d2b4f6f)
(cherry picked from commit 47ee619)
…arther than maxBatchSize. (cherry picked from commit 6b08e10)
(cherry picked from commit 175b184)
(cherry picked from commit 82a298d)
(cherry picked from commit 9f6a100)
(cherry picked from commit 75114d7)
(cherry picked from commit 0dc6fdb)
(cherry picked from commit 2a884a4)
(cherry picked from commit 987805e)
(cherry picked from commit 01f3b60)
(cherry picked from commit d9e3ee9)
(cherry picked from commit dc998fb)
(cherry picked from commit d206c53)
(cherry picked from commit b1a18b4)
(cherry picked from commit b28d9e6)
(cherry picked from commit 1fddeda)
(cherry picked from commit 6a4d925)
(cherry picked from commit 5bdec7b)
(cherry picked from commit c41acb9)
(cherry picked from commit 8cab398)
…n if next is not Topic. (cherry picked from commit 473267b)
(cherry picked from commit 20a6b77)
(cherry picked from commit fa881ad)
Fixes a race condition bug that can lead to a message being missed on dispatch and stuck on a Queue until restart when caching and concurrentStoreAndDispatch are enabled on a Queue and the cache becomes disabled. (cherry picked from commit 7f218fe)
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.
No description provided.