mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-06-20 12:54:23 -04:00
be more patient to avoid spurious warnings waiting for browser to start up
This commit is contained in:
parent
d22cc075e0
commit
a8b564f100
2 changed files with 4 additions and 3 deletions
|
@ -177,6 +177,7 @@ class Chrome:
|
||||||
json_url = 'http://localhost:%s/json' % self.port
|
json_url = 'http://localhost:%s/json' % self.port
|
||||||
# make this a member variable so that kill -QUIT reports it
|
# make this a member variable so that kill -QUIT reports it
|
||||||
self._start = time.time()
|
self._start = time.time()
|
||||||
|
self._last_warning = self._start
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
raw_json = urllib.request.urlopen(json_url, timeout=30).read()
|
raw_json = urllib.request.urlopen(json_url, timeout=30).read()
|
||||||
|
@ -194,11 +195,11 @@ class Chrome:
|
||||||
except brozzler.ShutdownRequested:
|
except brozzler.ShutdownRequested:
|
||||||
raise
|
raise
|
||||||
except BaseException as e:
|
except BaseException as e:
|
||||||
if int(time.time() - self._start) % 10 == 5:
|
if time.time() - self._last_warning > 30:
|
||||||
self.logger.warn(
|
self.logger.warn(
|
||||||
'problem with %s (will keep trying until timeout '
|
'problem with %s (will keep trying until timeout '
|
||||||
'of %d seconds): %s', json_url, timeout_sec, e)
|
'of %d seconds): %s', json_url, timeout_sec, e)
|
||||||
pass
|
self._last_warning = time.time()
|
||||||
finally:
|
finally:
|
||||||
if time.time() - self._start > timeout_sec:
|
if time.time() - self._start > timeout_sec:
|
||||||
self.logger.error(
|
self.logger.error(
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -32,7 +32,7 @@ def find_package_data(package):
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='brozzler',
|
name='brozzler',
|
||||||
version='1.1b9.dev174',
|
version='1.1b9.dev175',
|
||||||
description='Distributed web crawling with browsers',
|
description='Distributed web crawling with browsers',
|
||||||
url='https://github.com/internetarchive/brozzler',
|
url='https://github.com/internetarchive/brozzler',
|
||||||
author='Noah Levitt',
|
author='Noah Levitt',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue