##// END OF EJS Templates
replace unused websocket_host with websocket_url...
MinRK -
Show More
@@ -426,8 +426,12 b' class NotebookApp(BaseIPythonApplication):'
426 elif not new.endswith('/'):
426 elif not new.endswith('/'):
427 self.base_kernel_url = new+'/'
427 self.base_kernel_url = new+'/'
428
428
429 websocket_host = Unicode("", config=True,
429 websocket_url = Unicode("", config=True,
430 help="""The hostname for the websocket server."""
430 help="""The base URL for the websocket server,
431 if it differs from the HTTP server (hint: it almost certainly doesn't).
432
433 Should be in the form of an HTTP origin: ws[s]://hostname[:port]
434 """
431 )
435 )
432
436
433 extra_static_paths = List(Unicode, config=True,
437 extra_static_paths = List(Unicode, config=True,
General Comments 0
You need to be logged in to leave comments. Login now