From a0a113a9a4527cb0e5f7748739036d69ccfced35 Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Wed, 2 Oct 2019 22:49:45 -0700 Subject: [PATCH] temp. hardcode for ws host --- nucypher/network/status_app/moe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nucypher/network/status_app/moe.py b/nucypher/network/status_app/moe.py index 7ffb630b5..b79f6c61a 100644 --- a/nucypher/network/status_app/moe.py +++ b/nucypher/network/status_app/moe.py @@ -43,7 +43,7 @@ class MoeStatusApp(NetworkStatusPage): template_path = os.path.join(self.TEMPLATE_DIR, 'moe.html') with open(template_path, 'r') as file: moe_template = file.read() - self.dash_app.index_string = Template(moe_template).substitute(ws_port=ws_port) + self.dash_app.index_string = Template(moe_template).substitute(ws_port=ws_port, ws_host='0.0.0.0') # TODO self.dash_app.layout = html.Div([ dcc.Location(id='url', refresh=False),