mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-06-23 14:24:07 -04:00
actually respect --proxy and --warcprox-auto options to brozzler-worker
This commit is contained in:
parent
934190084c
commit
0e35de43b6
2 changed files with 3 additions and 2 deletions
|
@ -336,7 +336,8 @@ def brozzler_worker():
|
||||||
service_registry = doublethink.ServiceRegistry(rr)
|
service_registry = doublethink.ServiceRegistry(rr)
|
||||||
worker = brozzler.worker.BrozzlerWorker(
|
worker = brozzler.worker.BrozzlerWorker(
|
||||||
frontier, service_registry, max_browsers=int(args.max_browsers),
|
frontier, service_registry, max_browsers=int(args.max_browsers),
|
||||||
chrome_exe=args.chrome_exe)
|
chrome_exe=args.chrome_exe, proxy=args.proxy,
|
||||||
|
warcprox_auto=args.warcprox_auto)
|
||||||
|
|
||||||
worker.run()
|
worker.run()
|
||||||
|
|
||||||
|
|
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.1b10.dev219',
|
version='1.1b10.dev220',
|
||||||
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