This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new 3191d0c ARTEMIS-3461 Fixing Typo on Creation Time
3191d0c is described below
commit 3191d0c92979e29b0e851b3924d1a47f03727284
Author: Clebert Suconic <[email protected]>
AuthorDate: Thu Oct 21 15:34:18 2021 -0400
ARTEMIS-3461 Fixing Typo on Creation Time
---
.../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());