fix tests

This commit is contained in:
Noah Levitt 2018-02-02 15:11:26 -08:00
parent 5331aca33f
commit 8505720c41
3 changed files with 5 additions and 5 deletions

View file

@ -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(