(pids, env)
| 339 | } |
| 340 | |
| 341 | function shouldRestartForProxy(pids, env) { |
| 342 | if (!pids || pids.length === 0) return false; |
| 343 | var proxyHealth = checkProxyHealth(env); |
| 344 | return proxyHealth.expected === true && proxyHealth.healthy === false; |
| 345 | } |
| 346 | |
| 347 | function getCmdLine(pid) { |
| 348 | try { |
no test coverage detected