power-queues 2.0.10 → 2.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -270,7 +270,7 @@ var PowerQueues = class extends import_power_redis.PowerRedis {
|
|
|
270
270
|
this.removeOnExecuted = false;
|
|
271
271
|
this.executeBatchAtOnce = false;
|
|
272
272
|
this.executeJobStatus = false;
|
|
273
|
-
this.executeJobStatusTtlMs =
|
|
273
|
+
this.executeJobStatusTtlMs = 3e5;
|
|
274
274
|
this.consumerHost = "host";
|
|
275
275
|
this.stream = "stream";
|
|
276
276
|
this.group = "group";
|
package/dist/index.js
CHANGED
|
@@ -253,7 +253,7 @@ var PowerQueues = class extends PowerRedis {
|
|
|
253
253
|
this.removeOnExecuted = false;
|
|
254
254
|
this.executeBatchAtOnce = false;
|
|
255
255
|
this.executeJobStatus = false;
|
|
256
|
-
this.executeJobStatusTtlMs =
|
|
256
|
+
this.executeJobStatusTtlMs = 3e5;
|
|
257
257
|
this.consumerHost = "host";
|
|
258
258
|
this.stream = "stream";
|
|
259
259
|
this.group = "group";
|
package/package.json
CHANGED