From 49faec8f6dfc15075203ad332abfea0940f4e7b7 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Thu, 13 May 2021 05:04:23 -0400 Subject: [PATCH] add no-zygote and single-process args to try and prevent orphan chrome processes after exit --- archivebox/util.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archivebox/util.py b/archivebox/util.py index 814c8038..b418ef5d 100644 --- a/archivebox/util.py +++ b/archivebox/util.py @@ -242,6 +242,8 @@ def chrome_args(**options) -> List[str]: '--disable-software-rasterizer', '--run-all-compositor-stages-before-draw', '--hide-scrollbars', + '--single-process', + '--no-zygote', )