node-agent on zampp2: redundant + dead env vars in .env.worker #127
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closed in 1.2.0 ship prep.
onboard-node.shrewrites.env.workerfrom scratch on every run with only the live vars actually consumed byindex.jsanddocker-compose.worker.yml. Stale entries from older deploys get wiped on re-onboard.Also addressed #109 in the same change:
BMD_COUNToverride now usesBMD_DEVICE_PREFIX(defaultdv, setiofor DeckLink IO/Quad) instead of hardcoding/dev/blackmagic/dv${i}.Re-run on zampp2:
zgaetano referenced this issue2026-05-26 18:22:49 -04:00
Fix Plan — #127 Redundant + dead env vars in zampp2 .env.worker
Root cause: zampp2
.env.workerhas:NODE_IP=172.18.91.217(stale bridge IP) +NODE_IP=172.18.91.200(dup, second wins)GPU_COUNT=1(blocks nvidia-smi enrichment — see #108)BMD_COUNT=4(OK but wrong paths — see #109)BMD_DEVICE_0..3(dead code — node-agent never reads these)Fix:
NODE_IP— keep only172.18.91.200GPU_COUNT=1(after #108 fix)BMD_DEVICE_*from.env.example(or wire them up)BMD_COUNT=4until #109 fix landsFiles:
.env.workeron zampp2,.env.examplein repoEffort: ~15min
**Priority: P3 — cleanup, depends on #108 + #109