Skip to content

Commit

Permalink
ARTEMIS-3631 recognise more timestamp header fields from OpenWire
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwin Dondorp authored and jbertram committed Jan 12, 2022
1 parent 1beb656 commit 851cc7e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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") {
Expand All @@ -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});
});
Expand Down

0 comments on commit 851cc7e

Please sign in to comment.