From cbd8df6459b01f816d922efb967800bf020b4e6a Mon Sep 17 00:00:00 2001 From: Erwin Dondorp Date: Mon, 9 May 2022 22:07:14 +0200 Subject: [PATCH] ARTEMIS-3824 also display replyTo address when available in the message --- .../activemq/artemis/protocol/amqp/broker/AMQPMessage.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/broker/AMQPMessage.java b/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/broker/AMQPMessage.java index c707bf8b3f..98820161a9 100644 --- a/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/broker/AMQPMessage.java +++ b/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/broker/AMQPMessage.java @@ -914,6 +914,9 @@ public abstract class AMQPMessage extends RefCountMessage implements org.apache. if (properties.getSubject() != null) { map.put(propertiesPrefix + "subject", properties.getSubject()); } + if (properties.getReplyTo() != null) { + map.put(propertiesPrefix + "replyTo", properties.getReplyTo()); + } } return map;