Socket
Socket
Sign inDemoInstall

amqp-connection-manager

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amqp-connection-manager - npm Package Compare versions

Comparing version 4.1.2 to 4.1.3

4

dist/cjs/AmqpConnectionManager.js

@@ -62,3 +62,5 @@ "use strict";

this.heartbeatIntervalInSeconds =
options.heartbeatIntervalInSeconds || HEARTBEAT_IN_SECONDS;
options.heartbeatIntervalInSeconds || options.heartbeatIntervalInSeconds === 0
? options.heartbeatIntervalInSeconds
: HEARTBEAT_IN_SECONDS;
this.reconnectTimeInSeconds =

@@ -65,0 +67,0 @@ options.reconnectTimeInSeconds || this.heartbeatIntervalInSeconds;

@@ -57,3 +57,5 @@ import amqp from 'amqplib';

this.heartbeatIntervalInSeconds =
options.heartbeatIntervalInSeconds || HEARTBEAT_IN_SECONDS;
options.heartbeatIntervalInSeconds || options.heartbeatIntervalInSeconds === 0
? options.heartbeatIntervalInSeconds
: HEARTBEAT_IN_SECONDS;
this.reconnectTimeInSeconds =

@@ -60,0 +62,0 @@ options.reconnectTimeInSeconds || this.heartbeatIntervalInSeconds;

{
"name": "amqp-connection-manager",
"version": "4.1.2",
"version": "4.1.3",
"description": "Auto-reconnect and round robin support for amqplib.",

@@ -5,0 +5,0 @@ "module": "./dist/esm/index.js",

Sorry, the diff of this file is not supported yet

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