🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

pg-boss

Package Overview
Dependencies
Maintainers
1
Versions
210
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pg-boss - npm Package Compare versions

Comparing version

to
0.3.2

8

lib/index.js

@@ -54,5 +54,9 @@ 'use strict';

});
boss.on('archived', function (count) {
return _this.emit('archived', count);
});
// manager makes sure workers aren't taking too long to finish their jobs
var manager = new Manager(config);
_this.manager = manager;
manager.on('error', function (error) {

@@ -64,3 +68,5 @@ return _this.emit('error', error);

});
_this.manager = manager;
manager.on('expired', function (count) {
return _this.emit('expired', count);
});
return _this;

@@ -67,0 +73,0 @@ }

2

package.json
{
"name": "pg-boss",
"version": "0.3.1",
"version": "0.3.2",
"description": "Queueing jobs in Node.js using PostgreSQL like a boss",

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