Socket
Socket
Sign inDemoInstall

keuss

Package Overview
Dependencies
Maintainers
0
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

keuss - npm Package Compare versions

Comparing version 2.0.2 to 2.0.3

11

backends/postgres.js

@@ -46,3 +46,12 @@ const _ = require ('lodash');

CREATE INDEX IF NOT EXISTS idx_${this._tbl_name}_mature ON ${this._tbl_name} (mature);
`, err => cb (err));
`, err => {
if (err){
// ignore catalog issues on concurrent table creation
// (duplicate key value violates unique constraint "pg_type_typname_nsp_index")
if (err.code == '23505') return cb()
return cb(err);
}
cb ();
});
}

@@ -49,0 +58,0 @@

2

package.json
{
"name": "keuss",
"version": "2.0.2",
"version": "2.0.3",
"keywords": [

@@ -5,0 +5,0 @@ "queue",

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