feat: enhance process cleanup to avoid orphaned processes and improve reliability

This commit is contained in:
Bohdan Triapitsyn
2026-01-16 02:38:09 +02:00
parent f0fe9632ef
commit 5389bae465
5 changed files with 45 additions and 11 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
## [1.5.1] - 2026-01-16
- Desktop: fixed orphaned OpenCode processes not being cleaned up on restart or exit.
- Opencode: fixed issue with reloading configuration was killing the app
## [1.5.0] - 2026-01-16
+1 -1
View File
@@ -2977,7 +2977,7 @@ dependencies = [
[[package]]
name = "openchamber-desktop"
version = "1.5.0"
version = "1.5.1"
dependencies = [
"anyhow",
"axum",
@@ -526,9 +526,23 @@ fn kill_process_on_port(port: Option<u16>) {
#[cfg(unix)]
{
use std::process::Command;
let _ = Command::new("sh")
.args(["-c", &format!("lsof -ti:{} | xargs kill -9 2>/dev/null || true", port)])
.output();
// First get PIDs, then kill them separately to avoid xargs issues
if let Ok(output) = Command::new("lsof")
.args(["-ti", &format!(":{}", port)])
.output()
{
let pids = String::from_utf8_lossy(&output.stdout);
for pid in pids.split_whitespace() {
if let Ok(pid_num) = pid.trim().parse::<i32>() {
// Don't kill our own process
if pid_num != std::process::id() as i32 {
let _ = Command::new("kill")
.args(["-9", &pid_num.to_string()])
.output();
}
}
}
}
}
}
+13 -2
View File
@@ -302,10 +302,21 @@ export function createOpenCodeManager(_context: vscode.ExtensionContext): OpenCo
// Kill any process listening on our port to clean up orphaned children.
if (portToKill) {
try {
execSync(`lsof -ti:${portToKill} | xargs kill -9 2>/dev/null || true`, {
stdio: 'ignore',
const lsofOutput = execSync(`lsof -ti:${portToKill} 2>/dev/null || true`, {
encoding: 'utf8',
timeout: 5000
});
const myPid = process.pid;
for (const pidStr of lsofOutput.split(/\s+/)) {
const pid = parseInt(pidStr.trim(), 10);
if (pid && pid !== myPid) {
try {
execSync(`kill -9 ${pid} 2>/dev/null || true`, { stdio: 'ignore', timeout: 2000 });
} catch {
// Ignore
}
}
}
} catch {
// Ignore - process may already be dead
}
+13 -4
View File
@@ -1434,10 +1434,19 @@ function killProcessOnPort(port) {
try {
// SDK's proc.kill() only kills the Node wrapper, not the actual opencode binary.
// Kill any process listening on our port to clean up orphaned children.
spawnSync('sh', ['-c', `lsof -ti:${port} | xargs kill -9 2>/dev/null || true`], {
stdio: 'ignore',
timeout: 5000
});
const result = spawnSync('lsof', ['-ti', `:${port}`], { encoding: 'utf8', timeout: 5000 });
const output = result.stdout || '';
const myPid = process.pid;
for (const pidStr of output.split(/\s+/)) {
const pid = parseInt(pidStr.trim(), 10);
if (pid && pid !== myPid) {
try {
spawnSync('kill', ['-9', String(pid)], { stdio: 'ignore', timeout: 2000 });
} catch {
// Ignore
}
}
}
} catch {
// Ignore - process may already be dead
}