This is an automated email from the ASF dual-hosted git repository.
jbertram 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 851cc7e ARTEMIS-3631 recognise more timestamp header fields from
OpenWire
new 303eeb7 This closes #3902
851cc7e is described below
commit 851cc7ee08ba6f223e7e9b740d134c1d9b3db5c2
Author: Erwin Dondorp <[email protected]>
AuthorDate: Fri Jan 7 16:57:39 2022 +0100
ARTEMIS-3631 recognise more timestamp header fields from OpenWire
---
.../artemis-plugin/src/main/webapp/plugin/js/components/browse.js | 4 ++++
1 file changed, 4 insertions(+)
diff --git
a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js
b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js
index e799bdc..919a375 100644
---
a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js
+++
b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js
@@ -848,6 +848,8 @@ var Artemis;
v2 += " (" + formatBindingType(v2) + ")";
} else if(k2 === "JMS_AMQP_ORIGINAL_ENCODING") {
v2 += " (" + formatAmqpEncoding(v2) + ")";
+ } else if(k2 === "_AMQ_ACTUAL_EXPIRY") {
+ v2 += " (" + formatTimestamp(v2) + ")";
} else if(k2 === "_AMQ_NotifTimestamp") {
v2 += " (" + formatTimestamp(v2) + ")";
} else if(k2 === "_AMQ_ROUTING_TYPE") {
@@ -860,6 +862,8 @@ var Artemis;
v2 += " (" + formatTimestamp(v2) + ")";
} else if(k2 === "properties.creationTime") {
v2 += " (" + formatTimestamp(v2) + ")";
+ } else if(k2 === "__HDR_BROKER_IN_TIME") {
+ v2 += " (" + formatTimestamp(v2) + ")";
}
properties.push({key: k2, value: v2});
});