This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git.
from ceceb66 This closes #3044
new 87eebc3 ARTEMIS-2712 Dealing with Aborts AMQP Large Message
new ad60a0b ARTEMIS-1975 Dealing with connection drops on AMQP Large
Message
new c1a000c This closes #3087
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../protocol/amqp/broker/AMQPLargeMessage.java | 7 +-
.../protocol/amqp/broker/AMQPSessionCallback.java | 5 +
.../amqp/proton/ProtonServerReceiverContext.java | 29 +++-
.../proton/ProtonServerReceiverContextTest.java | 13 +-
.../artemis/core/persistence/StorageManager.java | 2 +
.../impl/journal/JournalStorageManager.java | 42 +++---
.../impl/journal/LargeServerMessageImpl.java | 1 +
.../impl/nullpm/NullStorageLargeServerMessage.java | 6 +
.../impl/nullpm/NullStorageManager.java | 5 +
.../artemis/core/server/ActiveMQServer.java | 4 +
.../artemis/core/server/LargeServerMessage.java | 2 +
.../core/transaction/impl/TransactionImplTest.java | 5 +
.../largemessages/InterruptedAMQPLargeMessage.java | 167 +++++++++++++++++++++
.../SimpleStreamingLargeMessageTest.java | 33 ++++
.../client/LargeMessageAvoidLargeMessagesTest.java | 4 +
.../client/LargeMessageCompressTest.java | 4 +
.../tests/integration/client/LargeMessageTest.java | 73 +++++++++
.../tests/integration/client/SendAckFailTest.java | 5 +
18 files changed, 387 insertions(+), 20 deletions(-)
create mode 100644
tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/largemessages/InterruptedAMQPLargeMessage.java