@swydo/byol 3.0.307 → 3.0.308

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 3.0.308 (2024-11-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **byol:** update worker pool config to reflect concurrent lambda usage ([e1e6253](https://github.com/Swydo/byol/commit/e1e62535e682ea0e0af7ad7b4659a1699b71d480))
12
+
13
+
14
+
15
+
16
+
6
17
  ## 3.0.307 (2024-11-12)
7
18
 
8
19
  **Note:** Version bump only for package @swydo/byol
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swydo/byol",
3
- "version": "3.0.307",
3
+ "version": "3.0.308",
4
4
  "description": "Bring Your Own Lambda",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -27,5 +27,5 @@
27
27
  "peerDependencies": {
28
28
  "aws-xray-sdk-core": "^3.0.0"
29
29
  },
30
- "gitHead": "8221fc7a68e4991671ab9dcb69b31f61c833a9a0"
30
+ "gitHead": "e1e62535e682ea0e0af7ad7b4659a1699b71d480"
31
31
  }
@@ -44,6 +44,8 @@ async function getWorkerPool(indexPath, handlerName, environment, requestId, poo
44
44
  if (!workerPoolMap.has(poolKey)) {
45
45
  const pool = workerpool.pool(path.join(__dirname, 'assets', 'callHandlerProcess.js'), {
46
46
  workerType: 'process',
47
+ maxWorkers: 250,
48
+ maxQueueSize: 1,
47
49
  ...poolOptions,
48
50
  });
49
51