Fix ZuulWeb() invocation

For testing purposes, we have a bit of code in zuul/web.py so we
can just run that module. Need to fix the ZuulWeb() invocation
since parameter defaults are no longer present.

Change-Id: I58aba49da3b562436241a62a5451b3a1dcf31c06
This commit is contained in:
David Shrewsbury 2017-07-10 17:20:27 -04:00
parent cf7da7abd4
commit 0ee98fcd1e
1 changed files with 2 additions and 1 deletions

View File

@ -228,5 +228,6 @@ if __name__ == "__main__":
logging.basicConfig(level=logging.DEBUG)
loop = asyncio.get_event_loop()
loop.set_debug(True)
z = ZuulWeb()
z = ZuulWeb(listen_address="127.0.0.1", listen_port=9000,
gear_server="127.0.0.1", gear_port=4730)
z.run(loop)