increase timeout waiting for screenshot

because we are seeing timeouts on moderately busy machines
This commit is contained in:
Noah Levitt 2018-01-26 10:19:23 -08:00
parent c934759852
commit 67d5a0e671
2 changed files with 2 additions and 2 deletions

View File

@ -542,7 +542,7 @@ class Browser:
'problem extracting outlinks, result message: %s', message)
return frozenset()
def screenshot(self, timeout=30):
def screenshot(self, timeout=90):
self.logger.info('taking screenshot')
self.websock_thread.expect_result(self._command_id.peek())
msg_id = self.send_to_chrome(method='Page.captureScreenshot')

View File

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