Skip to content

Commit 606fa39

Browse files
committed
disable passing timeout arg to chrome because v111 is crashing when passed
1 parent 1f1c70a commit 606fa39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

archivebox/util.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ def chrome_args(**options) -> List[str]:
260260
if options['RESOLUTION']:
261261
cmd_args += ('--window-size={}'.format(options['RESOLUTION']),)
262262

263-
if options['TIMEOUT']:
264-
cmd_args += ('--timeout={}'.format(options['TIMEOUT'] * 1000),)
263+
#if options['TIMEOUT']:
264+
# cmd_args += ('--timeout={}'.format(options['TIMEOUT'] * 1000),)
265265

266266
if options['CHROME_USER_DATA_DIR']:
267267
cmd_args.append('--user-data-dir={}'.format(options['CHROME_USER_DATA_DIR']))

0 commit comments

Comments
 (0)