ARTEMIS-1542 - AMQP message cluster-bridging fixi

Fixing and issue where AMQP messages would lose their address when being sent accross a cluster-bridge.
This commit is contained in:
todd 2017-12-11 11:17:57 -05:00 committed by Clebert Suconic
parent 64552367b2
commit 4ab664f796
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ public class ClusterConnectionBridge extends BridgeImpl {
messageCopy.putExtraBytesProperty(Message.HDR_ROUTE_TO_IDS, queueIds);
messageCopy = super.beforeForward(messageCopy, null);
messageCopy = super.beforeForward(messageCopy, forwardingAddress);
return messageCopy;
}