X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=rwlaunchpad%2Fplugins%2Frwimagemgr%2Frift%2Ftasklets%2Frwimagemgr%2Flib%2Fquickproxy%2Fproxy.py;fp=rwlaunchpad%2Fplugins%2Frwimagemgr%2Frift%2Ftasklets%2Frwimagemgr%2Flib%2Fquickproxy%2Fproxy.py;h=e09aceb6a7dc8d10b8366741bd94d193b92b4f6d;hb=4870d0ee29789b859931e4e2c73e13dcb29537d5;hp=7a7d85b73c2c798d640c85797592119dcf01ad1b;hpb=6f1a3fe149e4a6b9803382cb299c902f4cf58ec9;p=osm%2FSO.git diff --git a/rwlaunchpad/plugins/rwimagemgr/rift/tasklets/rwimagemgr/lib/quickproxy/proxy.py b/rwlaunchpad/plugins/rwimagemgr/rift/tasklets/rwimagemgr/lib/quickproxy/proxy.py index 7a7d85b7..e09aceb6 100644 --- a/rwlaunchpad/plugins/rwimagemgr/rift/tasklets/rwimagemgr/lib/quickproxy/proxy.py +++ b/rwlaunchpad/plugins/rwimagemgr/rift/tasklets/rwimagemgr/lib/quickproxy/proxy.py @@ -380,6 +380,7 @@ def run_proxy(port, test_ssl=False, debug_level=0, io_loop=None, + address="", ): """ @@ -423,7 +424,7 @@ def run_proxy(port, kwargs = {"io_loop": io_loop} http_server = tornado.httpserver.HTTPServer(app, **kwargs) - http_server.listen(port) + http_server.listen(port, address) return http_server