diff --git a/ansible/roles/pywb/tasks/main.yml b/ansible/roles/pywb/tasks/main.yml index 975359f..16b9ea7 100644 --- a/ansible/roles/pywb/tasks/main.yml +++ b/ansible/roles/pywb/tasks/main.yml @@ -5,6 +5,7 @@ become: true - name: install pywb in virtualenv pip: name=pywb + version=0.33.2 virtualenv={{venv_root}}/pywb-ve34 virtualenv_python=python3.4 extra_args='--no-input --upgrade --pre --cache-dir=/tmp/pip-cache' diff --git a/setup.py b/setup.py index 7a81fc1..8c263fc 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def find_package_data(package): setuptools.setup( name='brozzler', - version='1.1b12.dev281', + version='1.1b12.dev282', description='Distributed web crawling with browsers', url='https://github.com/internetarchive/brozzler', author='Noah Levitt', diff --git a/tests/test_cluster.py b/tests/test_cluster.py index 48a9384..32e9734 100644 --- a/tests/test_cluster.py +++ b/tests/test_cluster.py @@ -661,11 +661,10 @@ def test_warcprox_outage_resiliency(httpd): opts = warcprox.Options() opts.address = '0.0.0.0' opts.port = 0 + opts.rethinkdb_services_url = 'rethinkdb://localhost/brozzler/services' - warcprox1 = warcprox.controller.WarcproxController( - service_registry=svcreg, options=opts) - warcprox2 = warcprox.controller.WarcproxController( - service_registry=svcreg, options=opts) + warcprox1 = warcprox.controller.WarcproxController(opts) + warcprox2 = warcprox.controller.WarcproxController(opts) warcprox1_thread = threading.Thread( target=warcprox1.run_until_shutdown, name='warcprox1') warcprox2_thread = threading.Thread(