New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-resque

Package Overview
Dependencies
Maintainers
3
Versions
181
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-resque - npm Package Compare versions

Comparing version 5.5.3 to 5.5.4

3

lib/scheduler.js

@@ -121,5 +121,4 @@ // To read notes about the master locking scheme, check out:

let lockedByMe = await this.connection.redis.setnx(masterKey, this.options.name)
let lockedByMe = await this.connection.redis.set(masterKey, this.options.name, 'NX', 'EX', this.options.masterLockTimeout)
if (lockedByMe === true || lockedByMe === 1) {
await this.connection.redis.expire(masterKey, this.options.masterLockTimeout)
return true

@@ -126,0 +125,0 @@ }

@@ -6,3 +6,3 @@ {

"license": "Apache-2.0",
"version": "5.5.3",
"version": "5.5.4",
"homepage": "http://github.com/taskrabbit/node-resque",

@@ -9,0 +9,0 @@ "repository": {

@@ -427,3 +427,3 @@ # node-resque: The best background jobs in node.

"add": {
plugins: [ require('Myplugin') ],
plugins: [ require('Myplugin').Myplugin ],
pluginOptions: {

@@ -430,0 +430,0 @@ MyPlugin: { thing: 'stuff' },

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