Skip to content

Commit edc03cb

Browse files
authored
Merge pull request #14 from reedsy/object-id-ack
🗃 Change `ack` to (string) `ObjectId`
2 parents 8d04c21 + a2a51bd commit edc03cb

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

mongodb-queue.ts

+2-7
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,7 @@
1010
*
1111
**/
1212

13-
import {randomBytes} from 'crypto';
14-
import {Collection, Db, Filter, FindOneAndUpdateOptions, Sort, UpdateFilter, WithId} from 'mongodb';
15-
16-
function id(): string {
17-
return randomBytes(16).toString('hex');
18-
}
13+
import {Collection, Db, Filter, FindOneAndUpdateOptions, ObjectId, Sort, UpdateFilter, WithId} from 'mongodb';
1914

2015
function now(): string {
2116
return (new Date()).toISOString();
@@ -135,7 +130,7 @@ export class MongoDBQueue<T = any> {
135130
const update: UpdateFilter<Message<T>> = {
136131
$inc: {tries: 1},
137132
$set: {
138-
ack: id(),
133+
ack: new ObjectId().toHexString(),
139134
visible: nowPlusSecs(visibility),
140135
},
141136
};

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@reedsy/mongodb-queue",
3-
"version": "7.0.1",
3+
"version": "7.1.0",
44
"description": "Message queues which uses MongoDB.",
55
"main": "mongodb-queue.js",
66
"scripts": {

0 commit comments

Comments
 (0)