@okf/ootils 1.21.2 → 1.21.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/browser.js CHANGED
@@ -634,8 +634,7 @@ var BASE_BULLMQ_CONFIG = {
634
634
  }
635
635
  },
636
636
  workerConfig: {
637
- concurrency: 1,
638
- // Sequential processing to avoid MongoDB write conflicts
637
+ concurrency: 100,
639
638
  lockDuration: 3e5,
640
639
  // 5 minutes lock duration since annotation can be slow
641
640
  maxStalledCount: 3
package/dist/browser.mjs CHANGED
@@ -597,8 +597,7 @@ var BASE_BULLMQ_CONFIG = {
597
597
  }
598
598
  },
599
599
  workerConfig: {
600
- concurrency: 1,
601
- // Sequential processing to avoid MongoDB write conflicts
600
+ concurrency: 100,
602
601
  lockDuration: 3e5,
603
602
  // 5 minutes lock duration since annotation can be slow
604
603
  maxStalledCount: 3
package/dist/node.js CHANGED
@@ -237,8 +237,7 @@ var init_GLOBAL_BULLMQ_CONFIG = __esm({
237
237
  }
238
238
  },
239
239
  workerConfig: {
240
- concurrency: 1,
241
- // Sequential processing to avoid MongoDB write conflicts
240
+ concurrency: 100,
242
241
  lockDuration: 3e5,
243
242
  // 5 minutes lock duration since annotation can be slow
244
243
  maxStalledCount: 3
package/dist/node.mjs CHANGED
@@ -242,8 +242,7 @@ var init_GLOBAL_BULLMQ_CONFIG = __esm({
242
242
  }
243
243
  },
244
244
  workerConfig: {
245
- concurrency: 1,
246
- // Sequential processing to avoid MongoDB write conflicts
245
+ concurrency: 100,
247
246
  lockDuration: 3e5,
248
247
  // 5 minutes lock duration since annotation can be slow
249
248
  maxStalledCount: 3
package/dist/universal.js CHANGED
@@ -634,8 +634,7 @@ var BASE_BULLMQ_CONFIG = {
634
634
  }
635
635
  },
636
636
  workerConfig: {
637
- concurrency: 1,
638
- // Sequential processing to avoid MongoDB write conflicts
637
+ concurrency: 100,
639
638
  lockDuration: 3e5,
640
639
  // 5 minutes lock duration since annotation can be slow
641
640
  maxStalledCount: 3
@@ -597,8 +597,7 @@ var BASE_BULLMQ_CONFIG = {
597
597
  }
598
598
  },
599
599
  workerConfig: {
600
- concurrency: 1,
601
- // Sequential processing to avoid MongoDB write conflicts
600
+ concurrency: 100,
602
601
  lockDuration: 3e5,
603
602
  // 5 minutes lock duration since annotation can be slow
604
603
  maxStalledCount: 3
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.21.2",
6
+ "version": "1.21.3",
7
7
  "description": "Utility functions for both browser and Node.js",
8
8
  "main": "dist/index.js",
9
9
  "module": "dist/index.mjs",