node-resque
Advanced tools
Comparing version 8.2.0 to 8.2.1
@@ -80,3 +80,3 @@ "use strict"; | ||
.sadd(this.connection.key("timestamps:" + item), "delayed:" + rTimestamp) | ||
.zadd(this.connection.key("delayed_queue_schedule"), rTimestamp.toString(), rTimestamp.toString()) | ||
.zadd(this.connection.key("delayed_queue_schedule"), rTimestamp, rTimestamp.toString()) | ||
.exec(); | ||
@@ -83,0 +83,0 @@ } |
@@ -6,3 +6,3 @@ { | ||
"license": "Apache-2.0", | ||
"version": "8.2.0", | ||
"version": "8.2.1", | ||
"homepage": "http://github.com/actionhero/node-resque", | ||
@@ -30,8 +30,8 @@ "repository": { | ||
"dependencies": { | ||
"ioredis": "^4.19.2" | ||
"ioredis": "^4.19.4" | ||
}, | ||
"devDependencies": { | ||
"@types/ioredis": "^4.17.8", | ||
"@types/jest": "^26.0.16", | ||
"@types/node": "^14.14.10", | ||
"@types/ioredis": "^4.19.2", | ||
"@types/jest": "^26.0.20", | ||
"@types/node": "^14.14.22", | ||
"ioredis-mock": "^5.2.0", | ||
@@ -42,5 +42,5 @@ "jest": "^26.6.3", | ||
"ts-jest": "^26.4.4", | ||
"ts-node": "^9.1.0", | ||
"typedoc": "^0.19.2", | ||
"typescript": "^4.1.2" | ||
"ts-node": "^9.1.1", | ||
"typedoc": "^0.20.18", | ||
"typescript": "^4.1.3" | ||
}, | ||
@@ -62,4 +62,4 @@ "jest": { | ||
"build": "tsc --declaration", | ||
"docs": "typedoc --out docs --theme default" | ||
"docs": "typedoc --out docs --theme default src/index.ts" | ||
} | ||
} |
@@ -114,3 +114,3 @@ import { EventEmitter } from "events"; | ||
this.connection.key("delayed_queue_schedule"), | ||
rTimestamp.toString(), | ||
rTimestamp, | ||
rTimestamp.toString() | ||
@@ -117,0 +117,0 @@ ) |
Sorry, the diff of this file is not supported yet
679158
Updatedioredis@^4.19.4