This commit is contained in:
Justin Bertram 2022-05-23 12:12:18 -05:00
commit 2cd92a82e7
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;