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

vault-high-availability

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vault-high-availability - npm Package Compare versions

Comparing version 1.0.71 to 1.0.72

2

index.js

@@ -33,3 +33,3 @@ /**

logger.debug("Going to find the vault leader task");
addressResolver.findActiveIp(callback);
addressResolver.findActiveIp(true);
});

@@ -36,0 +36,0 @@

{
"name": "vault-high-availability",
"version": "1.0.71",
"version": "1.0.72",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -15,6 +15,6 @@ 'use strict';

var findActiveIp = function (callback) {
var findActiveIp = function (forceRun) {
return new Promise(function (generalResolve, generalReject) {
log.info("will look for active ip only if isResolving is false");
if (!isResolving) {
if (!isResolving || forceRun === true) {
isResolving = true;

@@ -21,0 +21,0 @@ var startResolvingTime = Date.now();

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