Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

servicebus

Package Overview
Dependencies
Maintainers
2
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

servicebus - npm Package Compare versions

Comparing version 2.0.7 to 2.0.8

test/conn-channel-events.js

6

bus/rabbitmq/bus.js

@@ -50,2 +50,5 @@ var amqp = require('amqplib'),

conn.on('close', self.emit.bind(self, 'connection.close'));
conn.on('error', self.emit.bind(self, 'connection.error'));
function done () {

@@ -61,2 +64,3 @@ if (self.channels.length === (options.enableConfirms ? 3 : 2)) {

channel.on('error', channelError);
channel.on('close', self.emit.bind(self, 'channel.close'));
self.sendChannel = channel;

@@ -72,2 +76,3 @@ if (options.prefetch) {

channel.on('error', channelError);
channel.on('close', self.emit.bind(self, 'channel.close'));
self.listenChannel = channel;

@@ -84,2 +89,3 @@ if (options.prefetch) {

channel.on('error', channelError);
channel.on('close', self.emit.bind(self, 'channel.close'));
self.confirmChannel = channel;

@@ -86,0 +92,0 @@ if (options.prefetch) {

2

package.json

@@ -10,3 +10,3 @@ {

"description": "Simple service bus for sending events between processes using amqp.",
"version": "2.0.7",
"version": "2.0.8",
"homepage": "https://github.com/mateodelnorte/servicebus",

@@ -13,0 +13,0 @@ "repository": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc