This commit is contained in:
Justin Bertram 2022-01-12 12:42:32 -06:00
commit 303eeb75bf
No known key found for this signature in database
GPG Key ID: F41830B875BB8633
1 changed files with 4 additions and 0 deletions

View File

@ -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});
});