Commit 584921b
Fix env var name mismatch: NODE_RENDERER_CONCURRENCY → RENDERER_WORKERS_COUNT
The launcher was reading NODE_RENDERER_CONCURRENCY (inherited from
PR #723's f55dcc2), but app.yml sets RENDERER_WORKERS_COUNT (canonical
per marketplace + Pro renderer library). Result: prod/staging would
ignore the deployed value and always use the launcher default.
RENDERER_WORKERS_COUNT is the canonical env var name per:
- docs/oss/building-features/node-renderer/js-configuration.md
"workersCount (default: process.env.RENDERER_WORKERS_COUNT ...)"
- packages/react-on-rails-pro-node-renderer/src/shared/configBuilder.ts:200
"workersCount: env.RENDERER_WORKERS_COUNT ? parseInt(...) : defaultWorkersCount()"
- react-server-components-marketplace-demo/node-renderer.js
NODE_RENDERER_CONCURRENCY was a non-canonical name invented by PR #723.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 0f2bcd4 commit 584921b
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| |||
0 commit comments