From 2219eed386dc61f8a8caf048d8162c5e76bc65de Mon Sep 17 00:00:00 2001 From: Yutaka Hirano Date: Wed, 1 Jun 2022 00:32:54 +0900 Subject: [PATCH] chore: fix network-service related chromium feature settings (#8350) --- src/node/Launcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/Launcher.ts b/src/node/Launcher.ts index 8870ec95..971bd8a5 100644 --- a/src/node/Launcher.ts +++ b/src/node/Launcher.ts @@ -207,7 +207,7 @@ class ChromeLauncher implements ProductLauncher { const chromeArguments = [ '--allow-pre-commit-input', // TODO(crbug.com/1320996): neither headful nor headless should rely on this flag. '--disable-background-networking', - '--enable-features=NetworkService,NetworkServiceInProcess', + '--enable-features=NetworkServiceInProcess2', '--disable-background-timer-throttling', '--disable-backgrounding-occluded-windows', '--disable-breakpad',