@intelligems/sst 2.49.8-ig.1 → 2.49.8-ig.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "@intelligems/sst",
4
- "version": "2.49.8-ig.1",
4
+ "version": "2.49.8-ig.2",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },
@@ -14,7 +14,7 @@ export const POOL_SIZE = int("SST_WORKER_POOL_SIZE", 4);
14
14
  /** How long an idle worker is kept before it is terminated. */
15
15
  export const IDLE_TIMEOUT = int("SST_WORKER_IDLE_TIMEOUT", 5 * 60 * 1000);
16
16
  /** Invocations one Node worker may run at the same time. */
17
- export const WORKER_CONCURRENCY = Math.max(1, int("SST_WORKER_CONCURRENCY", 1));
17
+ export const WORKER_CONCURRENCY = Math.max(1, int("SST_WORKER_CONCURRENCY", 5));
18
18
  /** Warm pings sent at dev start. 0 disables warmup. Capped at POOL_SIZE. */
19
19
  export const WARMUP_COUNT = Math.min(POOL_SIZE, Math.max(0, int("SST_WARMUP_COUNT", POOL_SIZE)));
20
20
  /** V8 old-space cap for each Node worker thread, in MB. 0 leaves it unbounded. */