@onlineapps/conn-orch-registry 1.1.18 → 1.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/queueManager.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onlineapps/conn-orch-registry",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.19",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Connector-registry-client provides the core communication mechanism for microservices in this environment. It enables them to interact with a services_registry to receive and fulfill tasks by submitting heartbeats or their API descriptions.",
|
|
6
6
|
"keywords": [
|
package/src/queueManager.js
CHANGED
|
@@ -43,6 +43,8 @@ class QueueManager {
|
|
|
43
43
|
*/
|
|
44
44
|
async init() {
|
|
45
45
|
this.conn = await amqp.connect(this.amqpUrl);
|
|
46
|
+
// Use regular channel instead of ConfirmChannel to avoid RPC reply queue issues
|
|
47
|
+
// ConfirmChannel uses RPC pattern which requires reply queues that may not exist
|
|
46
48
|
this.channel = await this.conn.createChannel();
|
|
47
49
|
}
|
|
48
50
|
|