ARTEMIS-3631 recognise more timestamp header fields from OpenWire
This commit is contained in:
parent
1beb6565b7
commit
851cc7ee08
|
@ -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});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue