@toa.io/bindings.amqp 0.2.0-dev.0 → 0.2.0-dev.1
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 +2 -2
- package/src/channel.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toa.io/bindings.amqp",
|
|
3
|
-
"version": "0.2.0-dev.
|
|
3
|
+
"version": "0.2.0-dev.1",
|
|
4
4
|
"description": "Toa AMQP Binding",
|
|
5
5
|
"author": "temich <tema.gurtovoy@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/toa-io/toa#readme",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"amqplib": "0.8.0",
|
|
23
23
|
"execa": "5.1.1"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "a0df6f203bca3e26e3a4a791a213e418d2b65764"
|
|
26
26
|
}
|
package/src/channel.js
CHANGED
|
@@ -121,7 +121,7 @@ class Channel extends Connector {
|
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
const QUEUE = { durable:
|
|
125
|
-
const EXCHANGE = { durable:
|
|
124
|
+
const QUEUE = { durable: true }
|
|
125
|
+
const EXCHANGE = { durable: true }
|
|
126
126
|
|
|
127
127
|
exports.Channel = Channel
|