@ddtcorex/dsh-maestro-supervisor 0.5.0 → 0.5.1
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/lib/debug-agent.js +2 -1
- package/package.json +1 -1
package/lib/debug-agent.js
CHANGED
|
@@ -193,7 +193,8 @@ async function defaultDryBoot() {
|
|
|
193
193
|
const { execSync } = await import('node:child_process');
|
|
194
194
|
const tmp = execSync('mktemp -d', { encoding: 'utf-8' }).trim();
|
|
195
195
|
const port = Math.floor(19000 + Math.random() * 1000);
|
|
196
|
-
|
|
196
|
+
// Use spawn-based dry-boot to avoid nested quoting hell (prev \\$! / \\$(seq) caused syntax error)
|
|
197
|
+
const out = execSync(`timeout 8 bash -c 'DSH_HOME=${tmp} pnpm --dir /home/kai/Work/htdocs/maestro-harness/deepseek-harness dsh web --port ${port} --no-open >${tmp}/dsh.log 2>&1 & pid=$!; for i in $(seq 1 5); do sleep 1; if curl -s -o /dev/null -w "%{http_code}" http://127.0.0.1:${port}/ 2>&1 | grep -q 200; then kill $pid 2>/dev/null || true; wait $pid 2>/dev/null || true; echo ok; exit 0; fi; done; kill $pid 2>/dev/null || true; wait $pid 2>/dev/null || true; echo fail; exit 1'`, { encoding: 'utf-8', timeout: 12000 });
|
|
197
198
|
execSync(`rm -rf ${tmp}`);
|
|
198
199
|
return out.includes('ok');
|
|
199
200
|
}
|