undo accidentally committed change to browser startup timeout, and remove now misleading comment about browser ports (see https://github.com/internetarchive/brozzler/pull/3)

This commit is contained in:
Noah Levitt 2016-06-29 18:53:32 -05:00
parent 7431ae0eb1
commit ffcf26b6c9
2 changed files with 2 additions and 4 deletions

View File

@ -55,8 +55,6 @@ class BrowserPool:
self._lock = threading.Lock()
self.logger.info("browser ports: {}".format([browser.chrome_port for browser in self._available]))
def acquire(self):
"""
Returns browser from pool if available, raises NoBrowsersAvailable
@ -464,7 +462,7 @@ class Chrome:
# returns websocket url to chrome window with about:blank loaded
def start(self):
timeout_sec = 20
timeout_sec = 600
new_env = os.environ.copy()
new_env["HOME"] = self.user_home_dir
chrome_args = [

View File

@ -21,7 +21,7 @@ import setuptools
setuptools.setup(
name='brozzler',
version='1.1.dev33',
version='1.1.dev34',
description='Distributed web crawling with browsers',
url='https://github.com/internetarchive/brozzler',
author='Noah Levitt',