ARTEMIS-3461 Fixing Typo on Creation Time

This commit is contained in:
Clebert Suconic 2021-10-21 15:34:18 -04:00
parent 14f8e8d5ab
commit 3191d0c929
1 changed files with 1 additions and 1 deletions

View File

@ -893,7 +893,7 @@ public abstract class AMQPMessage extends RefCountMessage implements org.apache.
map.put(propertiesPrefix + "creationTime", properties.getCreationTime().getTime());
}
if (properties.getAbsoluteExpiryTime() != null) {
map.put(propertiesPrefix + "absoluteExpiryTime", properties.getCreationTime().getTime());
map.put(propertiesPrefix + "absoluteExpiryTime", properties.getAbsoluteExpiryTime().getTime());
}
if (properties.getTo() != null) {
map.put(propertiesPrefix + "to", properties.getTo());