@toa.io/bindings.amqp 0.1.0-dev.0 → 0.1.0-dev.13

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.
Files changed (2) hide show
  1. package/package.json +2 -6
  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.1.0-dev.0",
3
+ "version": "0.1.0-dev.13+ccc74b9",
4
4
  "description": "Toa AMQP Binding",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -18,13 +18,9 @@
18
18
  "scripts": {
19
19
  "test": "echo \"Error: run tests from root\" && exit 1"
20
20
  },
21
- "peerDependencies": {
22
- "@toa.io/core": "^0.0.0",
23
- "@toa.io/gears": "^0.0.0"
24
- },
25
21
  "dependencies": {
26
22
  "amqplib": "0.8.0",
27
23
  "execa": "5.1.1"
28
24
  },
29
- "gitHead": "632df6cead03909ad2cfb8852e178914ac4ab5d2"
25
+ "gitHead": "ccc74b95d373e8b8c780aa4ae5a4de878fe7517a"
30
26
  }
package/src/channel.js CHANGED
@@ -121,7 +121,7 @@ class Channel extends Connector {
121
121
  }
122
122
  }
123
123
 
124
- const QUEUE = { durable: process.env.TOA_ENV !== 'dev' }
125
- const EXCHANGE = { durable: process.env.TOA_ENV !== 'dev' }
124
+ const QUEUE = { durable: true }
125
+ const EXCHANGE = { durable: true }
126
126
 
127
127
  exports.Channel = Channel