ARTEMIS-3824 also display replyTo address when available in the message
This commit is contained in:
parent
e362f63607
commit
cbd8df6459
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue