Fix startup crasher bug

socket.gaierror errors out on startup since it is unable to resolve
the NetbookApp.ip address.  This was reported upstream as:
https://github.com/jupyter/notebook/issues/4558

Signed-of-by: Rusty Lynch <rusty.lynch@intel.com>
This commit is contained in:
Rusty Lynch
2019-07-17 14:14:34 -07:00
committed by William Douglas
parent 36c10e0241
commit 05981ccb0d
@@ -1,7 +1,7 @@
c = get_config()
c.ContentsManager.root_dir = "/root/"
c.NotebookApp.allow_root = True
c.NotebookApp.ip = '*'
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.open_browser = False
c.NotebookApp.port = 8888