remove unneeded change
This commit is contained in:
parent
1361b4b495
commit
50305cc235
|
|
@ -226,7 +226,7 @@ export async function launchProcess(options: LaunchProcessOptions): Promise<Laun
|
||||||
killSet.delete(killProcessAndCleanup);
|
killSet.delete(killProcessAndCleanup);
|
||||||
removeProcessHandlersIfNeeded();
|
removeProcessHandlersIfNeeded();
|
||||||
options.log(`[pid=${spawnedProcess.pid}] <kill>`);
|
options.log(`[pid=${spawnedProcess.pid}] <kill>`);
|
||||||
if (spawnedProcess.pid && !processClosed) {
|
if (spawnedProcess.pid && !spawnedProcess.killed && !processClosed) {
|
||||||
options.log(`[pid=${spawnedProcess.pid}] <will force kill>`);
|
options.log(`[pid=${spawnedProcess.pid}] <will force kill>`);
|
||||||
// Force kill the browser.
|
// Force kill the browser.
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue