Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit a2a023c

Browse files
authored
Merge pull request #16 from EnMasseProject/use-reply-to-for-management
Use reply_to instead of JMSReplyTo to work with broker
2 parents e3c5949 + b1d1468 commit a2a023c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

artemis.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Artemis.prototype._send_pending_requests = function () {
116116
}
117117

118118
Artemis.prototype._send_request = function (request) {
119-
request.application_properties.JMSReplyTo = this.address;
119+
request.reply_to = this.address;
120120
this.sender.send(request);
121121
console.log('[' + this.connection.container_id + '] sent: ' + JSON.stringify(request));
122122
}

0 commit comments

Comments
 (0)