After upgrading to 1.8.6 (from 1.8.4), web gui launch
/usr/local/bin/lpad webgui --server_mode --nworkers 1 --webgui_username ${FWAPP_AUTH_USERNAME} --webgui_password ${FWAPP_AUTH_PASSWORD}
broke due to some import of a nonexistant object in fireworks/scripts/lpad_run.py, line 530
.
Removing the following line makes the launch work again:
diff --git a/fireworks/scripts/lpad_run.py b/fireworks/scripts/lpad_run.pyindex 08eceb56..11cc10b1 100644
--- a/fireworks/scripts/lpad_run.py
+++ b/fireworks/scripts/lpad_run.py
@@ -527,7 +527,6 @@ def webgui(args):
webbrowser.open("http://{}:{}".format(args.host, args.port))
p1.join()
else:
- from fireworks.flask_site.app import bootstrap_app
try:
from fireworks.flask_site.gunicorn import (
StandaloneApplication, number_of_workers)