diff --git a/src/sandbox/sandbox-manager.ts b/src/sandbox/sandbox-manager.ts index e5e2ff4..748a7cc 100644 --- a/src/sandbox/sandbox-manager.ts +++ b/src/sandbox/sandbox-manager.ts @@ -824,10 +824,14 @@ async function reset(): Promise { }) setTimeout(() => { diagDump(`+200ms http`, httpBridgeProcess.pid) + diagDump(`+200ms socks`, socksBridgeProcess.pid) + console.error( + `[reset-diag] +200ms http exitCode=${httpBridgeProcess.exitCode} signalCode=${httpBridgeProcess.signalCode}`, + ) }, 200) // Timeout after 5 seconds setTimeout(() => { - diagDump(`+4500ms http`, httpBridgeProcess.pid) + diagDump(`+5000ms http`, httpBridgeProcess.pid) if (!httpBridgeProcess.killed) { logForDebugging('HTTP bridge did not exit, forcing SIGKILL', { level: 'warn', @@ -841,7 +845,7 @@ async function reset(): Promise { } } resolve() - }, 4500) + }, 5000) }), ) } catch (err) {