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

deep-db

Package Overview
Dependencies
Maintainers
1
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deep-db - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

28

lib.compiled/Local/Driver/LocalDynamo.js

@@ -53,6 +53,8 @@ /**

this._process = null;
this._pickUpOldInstance = true; // @todo: set it false by default?
}
/**
* @returns {Object}
* @returns {Boolean}
*/

@@ -77,4 +79,10 @@

this._process = _localDynamo2['default'].launch(this._options, this.port);
try {
this._process = _localDynamo2['default'].launch(this._options, this.port);
} catch (error) {
this._pickUpOldInstance ? cb(null) : cb(new _ExceptionFailedToStartServerException.FailedToStartServerException(this, error));
return;
}
// This hook fixes DynamoDB startup delay by waiting an empty stdout dataset

@@ -126,2 +134,18 @@ // @todo: remove this hook after fixing issue!

}, {
key: 'pickUpOldInstance',
get: function get() {
return this._pickUpOldInstance;
},
/**
* @param {Boolean} state
*/
set: function set(state) {
this._pickUpOldInstance = state;
}
/**
* @returns {Object}
*/
}, {
key: 'options',

@@ -128,0 +152,0 @@ get: function get() {

2

package.json
{
"name": "deep-db",
"version": "1.1.3",
"version": "1.1.4",
"description": "DEEP Database Library",

@@ -5,0 +5,0 @@ "keywords": [

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