From 606fa397a42e2821d8879b6274e056c8f75ccbe0 Mon Sep 17 00:00:00 2001
From: Nick Sweeting <git@sweeting.me>
Date: Mon, 13 Mar 2023 10:50:18 +0000
Subject: [PATCH] disable passing timeout arg to chrome because v111 is
 crashing when passed

---
 archivebox/util.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/archivebox/util.py b/archivebox/util.py
index 57a92af1..1b1006e1 100644
--- a/archivebox/util.py
+++ b/archivebox/util.py
@@ -260,8 +260,8 @@ def chrome_args(**options) -> List[str]:
     if options['RESOLUTION']:
         cmd_args += ('--window-size={}'.format(options['RESOLUTION']),)
 
-    if options['TIMEOUT']:
-        cmd_args += ('--timeout={}'.format(options['TIMEOUT'] * 1000),)
+    #if options['TIMEOUT']:
+    #    cmd_args += ('--timeout={}'.format(options['TIMEOUT'] * 1000),)
 
     if options['CHROME_USER_DATA_DIR']:
         cmd_args.append('--user-data-dir={}'.format(options['CHROME_USER_DATA_DIR']))