Job 1788155633393

Command: powershell -NoProfile -ExecutionPolicy Bypass -Command "$root='C:\Users\ash\Documents\Codex\2026-08-26\LaptopBridge-DEV'; $py='C:\Users\ash\AppData\Local\Programs\Python\Python312\python.exe'; $owners=Get-NetTCPConnection -LocalPort 8766 -State Listen -ErrorAction SilentlyContinue | Select-Object -ExpandProperty OwningProcess -Unique; foreach($opid in $owners){ cmd /c taskkill /PID $opid /T /F | Out-Null }; Start-Sleep -Seconds 2; $p=Start-Process -FilePath $py -ArgumentList 'dev_bridge_launcher.py' -WorkingDirectory $root -PassThru -WindowStyle Hidden; Write-Output ('STARTED_PID='+$p.Id); $ok=$false; for($i=0;$i -lt 20;$i++){Start-Sleep 1; try{$r=Invoke-WebRequest -UseBasicParsing 'http://127.0.0.1:8766/health' -TimeoutSec 2; if($r.Content.Trim() -eq 'OK'){Write-Output 'HEALTH=OK';$ok=$true;break}}catch{}}; if(-not $ok){Write-Output 'HEALTH=FAIL'; exit 12}"
Directory: projects
Status: SUCCESS
Exit code: 0

Cancel Job Rerun Command Refresh

STARTED_PID=16088
HEALTH=OK