Skip to content

Commit

Permalink
chore: Release v1.2.4 - See CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun-KumarH committed Nov 23, 2023
1 parent a275848 commit 726cba5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.2.4 (November 23rd, 2023)

- added separate queue for processing pending notification jobs

## 1.2.3 (November 21st, 2023)

- up deps
Expand Down
4 changes: 2 additions & 2 deletions package-lock.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": "@restorecommerce/notification-srv",
"version": "1.2.3",
"version": "1.2.4",
"description": "Restorecommerce notification microservice",
"main": "lib/start.js",
"author": "n-fuse GmbH",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { processPendingNotifications } from './implementation/process_pending_no
import { PROCESS_PENDING_NOTIFICATIONS } from './../service';

export default async (cfg, logger, events, service, runWorker) => {
await runWorker('defaultQueue', 1, cfg, logger, events, async (job) => {
await runWorker('notificationSrvQueue', 1, cfg, logger, events, async (job) => {
if (job.type === PROCESS_PENDING_NOTIFICATIONS) {
await processPendingNotifications(service, logger);
}
Expand Down

0 comments on commit 726cba5

Please sign in to comment.