fix reported chromium crash by removing argument

--single-process
https://github.com/internetarchive/brozzler/issues/128
This commit is contained in:
Noah Levitt 2018-10-22 14:28:31 -07:00
parent 20996fa501
commit af85f28908
2 changed files with 2 additions and 2 deletions

View File

@ -166,7 +166,7 @@ class Chrome:
'--disable-background-networking',
'--disable-renderer-backgrounding', '--disable-hang-monitor',
'--disable-background-timer-throttling', '--mute-audio',
'--disable-web-sockets', '--disable-cache', '--single-process',
'--disable-web-sockets', '--disable-cache',
'--window-size=1100,900', '--no-default-browser-check',
'--disable-first-run-ui', '--no-first-run',
'--homepage=about:blank', '--disable-direct-npapi-requests',

View File

@ -32,7 +32,7 @@ def find_package_data(package):
setuptools.setup(
name='brozzler',
version='1.5.dev310',
version='1.5.dev311',
description='Distributed web crawling with browsers',
url='https://github.com/internetarchive/brozzler',
author='Noah Levitt',