ARTEMIS-3824 also display replyTo address when available in the message

This commit is contained in:
Erwin Dondorp 2022-05-09 22:07:14 +02:00 committed by Justin Bertram
parent e362f63607
commit cbd8df6459
No known key found for this signature in database
GPG Key ID: F41830B875BB8633
1 changed files with 3 additions and 0 deletions

View File

@ -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;