Skip to content

Commit 736114b

Browse files
committed
Session is no longer a Configurable, removed from classes list.
Also removed some of the Gateway classes that shouldn't be there either.
1 parent a0b1e65 commit 736114b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

jupyter_server/serverapp.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
from .services.contents.filemanager import FileContentsManager
7575
from .services.contents.largefilemanager import LargeFileManager
7676
from .services.sessions.sessionmanager import SessionManager
77-
from .gateway.managers import GatewayKernelManager, GatewayKernelFinder, GatewaySessionManager, GatewayClient
77+
from .gateway.managers import GatewayKernelFinder, GatewayClient
7878

7979
from .auth.login import LoginHandler
8080
from .auth.logout import LogoutHandler
@@ -86,7 +86,6 @@
8686
JupyterApp, base_flags, base_aliases,
8787
)
8888
from jupyter_core.paths import jupyter_config_path
89-
from jupyter_protocol.session import Session
9089
from jupyter_kernel_mgmt.discovery import KernelFinder
9190
from nbformat.sign import NotebookNotary
9291
from traitlets import (
@@ -552,8 +551,7 @@ class ServerApp(JupyterApp):
552551
flags = flags
553552

554553
classes = [
555-
Session, MappingKernelManager,
556-
ContentsManager, FileContentsManager, NotebookNotary, GatewayClient,
554+
MappingKernelManager, ContentsManager, FileContentsManager, NotebookNotary, GatewayClient,
557555
]
558556
flags = Dict(flags)
559557
aliases = Dict(aliases)

0 commit comments

Comments
 (0)