@swydo/byol 3.0.307 → 3.0.309

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/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
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.309 (2024-12-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency express to v4.21.2 ([#913](https://github.com/Swydo/byol/issues/913)) ([5e97595](https://github.com/Swydo/byol/commit/5e97595083d146dacd2562d840d3f7b39fe56795))
12
+
13
+
14
+
15
+
16
+
17
+ ## 3.0.308 (2024-11-26)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **byol:** update worker pool config to reflect concurrent lambda usage ([e1e6253](https://github.com/Swydo/byol/commit/e1e62535e682ea0e0af7ad7b4659a1699b71d480))
23
+
24
+
25
+
26
+
27
+
6
28
  ## 3.0.307 (2024-11-12)
7
29
 
8
30
  **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.309",
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": "5e97595083d146dacd2562d840d3f7b39fe56795"
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