mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-03-05 17:00:17 +00:00
Historically speaking, all message properties starting with AMQ HDR would not be passed to OpenWire messages. However, that blocked the properties from management notifications so ARTEMIS-1209 was raised and the solution there was to pass properties that started with _AMQ *if* the consumer was connected to the management notification address. However, in this case messages are diverted to a different address so this check fails and the properties are removed. My solution will be to check the message itself to see if it has the _AMQ_NotifType property (which all notification messages do) rather than checking where the consumer is connected.