@hierotech/amqp-client
Advanced tools
Comparing version 0.1.5 to 0.1.6
{ | ||
"name": "@hierotech/amqp-client", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "AMQP client wrapper", | ||
@@ -28,7 +28,7 @@ "main": "src/index.js", | ||
"devDependencies": { | ||
"eslint": "^7.27.0", | ||
"eslint-config-xo": "^0.36.0", | ||
"mocha": "^8.4.0" | ||
"eslint": "^7.29.0", | ||
"eslint-config-xo": "^0.37.0", | ||
"mocha": "^9.0.1" | ||
}, | ||
"peerDependencies": {} | ||
} |
@@ -165,5 +165,3 @@ const amqplib = require('amqplib'); | ||
await channel.bindQueue(queue, name); | ||
await channel.consume(queue, (...args) => { | ||
return this._handleMessage(channel, ...args); | ||
}); | ||
await channel.consume(queue, (...args) => this._handleMessage(channel, ...args)); | ||
@@ -170,0 +168,0 @@ return channel; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7133
194