This is an automated email from the ASF dual-hosted git repository. clebertsuconic pushed a commit to branch 2.19.x in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
commit 4382382b356fb26aa6b49b7088447777cf0f234b Author: Clebert Suconic <[email protected]> AuthorDate: Thu Oct 21 15:34:18 2021 -0400 ARTEMIS-3461 Fixing Typo on Creation Time (cherry picked from commit 3191d0c92979e29b0e851b3924d1a47f03727284) --- .../org/apache/activemq/artemis/protocol/amqp/broker/AMQPMessage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 61682b1..64da6eb 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 @@ -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());
