Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions workers/grouper/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ export default class GrouperWorker extends Worker {
if (e.code?.toString() === DB_DUPLICATE_KEY_ERROR) {
HawkCatcher.send(new Error('[Grouper] MongoError: E11000 duplicate key error collection'));
await this.handle(task);

return;
} else {
throw e;
}
Expand Down
Loading