Socket
Socket
Sign inDemoInstall

larvitdbmigration

Package Overview
Dependencies
Maintainers
2
Versions
170
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

larvitdbmigration - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

16

index.js

@@ -64,6 +64,14 @@ 'use strict';

} else {
log.info('larvitdbmigration: getLock() - Another process is running the migrations for table ' + options.tableName + ', wait and try again soon.');
setTimeout(function() {
getLock(cb);
}, 500);
dbCon.query('UNLOCK TABLES;', function(err) {
if (err) {
log.error('larvitdbmigration: getLock() - SQL err: ' + err.message);
cb(err);
return;
}
log.info('larvitdbmigration: getLock() - Another process is running the migrations for table ' + options.tableName + ', wait and try again soon.');
setTimeout(function() {
getLock(cb);
}, 500);
});
}

@@ -70,0 +78,0 @@ });

@@ -38,3 +38,3 @@ {

},
"version": "1.3.0",
"version": "1.3.1",
"readmeFilename": "README.md",

@@ -41,0 +41,0 @@ "scripts": {

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