ARTEMIS-3570 decode more timestamp properties
This commit is contained in:
parent
51fd26a22c
commit
02e19e6531
|
@ -837,6 +837,14 @@ var Artemis;
|
|||
v2 += " (" + formatBindingType(v2) + ")";
|
||||
} else if(k2 === "JMS_AMQP_ORIGINAL_ENCODING") {
|
||||
v2 += " (" + formatAmqpEncoding(v2) + ")";
|
||||
} else if(k2 === "_AMQ_NotifTimestamp") {
|
||||
v2 += " (" + formatTimestamp(v2) + ")";
|
||||
} else if(k2 === "extraProperties._AMQ_ACTUAL_EXPIRY") {
|
||||
v2 += " (" + formatTimestamp(v2) + ")";
|
||||
} else if(k2 === "messageAnnotations.x-opt-ACTUAL-EXPIRY") {
|
||||
v2 += " (" + formatTimestamp(v2) + ")";
|
||||
} else if(k2 === "properties.creationTime") {
|
||||
v2 += " (" + formatTimestamp(v2) + ")";
|
||||
}
|
||||
properties.push({key: k2, value: v2});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue