[
https://issues.apache.org/jira/browse/ARTEMIS-4668?focusedWorklogId=908218&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-908218
]
ASF GitHub Bot logged work on ARTEMIS-4668:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 05/Mar/24 03:21
Start Date: 05/Mar/24 03:21
Worklog Time Spent: 10m
Work Description: clebertsuconic commented on code in PR #4840:
URL: https://github.com/apache/activemq-artemis/pull/4840#discussion_r1512084416
##########
tests/artemis-test-support/src/main/java/org/apache/activemq/transport/amqp/client/AmqpMessage.java:
##########
@@ -640,6 +640,11 @@ public String getText() throws NoSuchElementException {
throw new NoSuchElementException("Message does not contain a String
body");
}
+ public byte[] getBytes() {
+ Data body = (Data)getWrappedMessage().getBody();
+ return body.getValue().getArray();
Review Comment:
I just wanted to assert a few bytes[] that were set with setBytes([]).
I have no idea on what I'm supposed to do here. I will just revert the test
addition.
Issue Time Tracking
-------------------
Worklog Id: (was: 908218)
Time Spent: 2.5h (was: 2h 20m)
> Move AMQP Large Message File Handling away from Netty thread
> ------------------------------------------------------------
>
> Key: ARTEMIS-4668
> URL: https://issues.apache.org/jira/browse/ARTEMIS-4668
> Project: ActiveMQ Artemis
> Issue Type: Bug
> Affects Versions: 2.32.0
> Reporter: Clebert Suconic
> Assignee: Clebert Suconic
> Priority: Major
> Fix For: 2.33.0
>
> Time Spent: 2.5h
> Remaining Estimate: 0h
>
> Operations like file.open, file.close, and file.sync should be moved away
> from the Netty Thread for AMQP Large Messages
> This task now is about moving the processing for AMQP Messages. we may in a
> near future also improve tunneled large messages. For now we will do for AMQP
> messages only.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)