Skip to content

Commit

Permalink
fix: tweaked log message
Browse files Browse the repository at this point in the history
  • Loading branch information
sanoel committed Sep 30, 2024
1 parent 582892a commit f15c5e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oada/jobs",
"version": "4.6.0",
"version": "4.6.1",
"description": "A library for oada job based microservices",
"source": "src/index.ts",
"main": "dist/index.js",
Expand Down Expand Up @@ -149,4 +149,4 @@
"xksuid": "https://github.com/g12i/xksuid.git#fix-crypto-polyfill",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
}
}
}
5 changes: 1 addition & 4 deletions src/Queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,7 @@ export class Queue {
} else {
// AssertJobs(jobs);
await this.#doJobs(jobs as OADAJobs);
trace(
Object.keys(jobs).length,
' existing jobs added and doJobs is complete, starting watch.',
);
trace(`Existing queue size: ${Object.keys(jobs).length}`);
}
} catch (error_) {
error(`[QueueId: ${this._id}] Failed to start WATCH, %O`, error_);
Expand Down

0 comments on commit f15c5e9

Please sign in to comment.