mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
Merge pull request #4426 from minrk/kernel-cwd
set kernel cwd to notebook's directory
This commit is contained in:
commit
7570c8b00f
@ -62,7 +62,7 @@ class SessionRootHandler(IPythonHandler):
|
||||
if sm.session_exists(name=name, path=path):
|
||||
model = sm.get_session(name=name, path=path)
|
||||
else:
|
||||
kernel_id = km.start_kernel(cwd=nbm.notebook_dir)
|
||||
kernel_id = km.start_kernel(cwd=nbm.get_os_path(path))
|
||||
model = sm.create_session(name=name, path=path, kernel_id=kernel_id, ws_url=self.ws_url)
|
||||
location = url_path_join(self.base_kernel_url, 'api', 'sessions', model['id'])
|
||||
self.set_header('Location', url_escape(location))
|
||||
|
Loading…
Reference in New Issue
Block a user