(id: string)
| 1597 | }); |
| 1598 | |
| 1599 | async function svStop(id: string) { |
| 1600 | try { |
| 1601 | await baseRpcCall('/prpc/SvStop', { id }); |
| 1602 | await new Promise(r => setTimeout(r, 500)); |
| 1603 | await loadSupervisorProcesses(); |
| 1604 | } catch (error) { |
| 1605 | recordError('Failed to stop process', error); |
| 1606 | } |
| 1607 | } |
| 1608 | |
| 1609 | async function svRemove(id: string) { |
| 1610 | try { |
nothing calls this directly
no test coverage detected