mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-07-21 06:00:45 -04:00
bump version
This commit is contained in:
commit
55b8e50bee
2 changed files with 8 additions and 2 deletions
|
@ -527,7 +527,13 @@ class BrozzlerWorker:
|
|||
timeout=self.FETCH_URL_TIMEOUT,
|
||||
)
|
||||
except requests.exceptions.Timeout as e:
|
||||
self.logger.warning("Timed out fetching %s: %s", page.url, e)
|
||||
self.logger.warning("Timed out fetching %s", url)
|
||||
if "archive.org" in e:
|
||||
raise brozzler.ProxyError("proxy error fetching %s" % url) from e
|
||||
else:
|
||||
raise brozzler.PageConnectionError(
|
||||
"timeout error fetching %s" % url
|
||||
) from e
|
||||
except requests.exceptions.ProxyError as e:
|
||||
raise brozzler.ProxyError("proxy error fetching %s" % url) from e
|
||||
except requests.exceptions.RequestException as e:
|
||||
|
|
2
setup.py
2
setup.py
|
@ -34,7 +34,7 @@ def find_package_data(package):
|
|||
|
||||
setuptools.setup(
|
||||
name="brozzler",
|
||||
version="1.6.9.a1",
|
||||
version="1.6.9.a2",
|
||||
description="Distributed web crawling with browsers",
|
||||
url="https://github.com/internetarchive/brozzler",
|
||||
author="Noah Levitt",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue