Skip to content

Commit

Permalink
v2.0.45-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwitt committed May 21, 2024
1 parent 4c4e26e commit 1bd065c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qdone",
"version": "2.0.44-alpha",
"version": "2.0.45-alpha",
"description": "A distributed scheduler for SQS",
"type": "module",
"main": "./index.js",
Expand Down
6 changes: 3 additions & 3 deletions src/scheduler/jobExecutor.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ const maxJobSeconds = 12 * 60 * 60
export class JobExecutor {
constructor (opt) {
this.opt = opt
this.jobs = [] // for full traversals
this.jobsByMessageId = {} // for looking up via message id
this.jobsByQueue = new Map() // for looking up via queue name
this.jobs = [] // for full traversals
this.jobsByMessageId = {} // for looking up via message id
this.jobsByQueue = new Map() // for looking up via queue name
this.stats = {
activeJobs: 0,
waitingJobs: 0,
Expand Down

0 comments on commit 1bd065c

Please sign in to comment.