We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d01f84 commit 702c248Copy full SHA for 702c248
jupyter_server/services/kernels/websocket.py
@@ -68,6 +68,9 @@ async def get(self, kernel_id):
68
69
async def open(self, kernel_id):
70
"""Open a kernel websocket."""
71
+ # Need to call super here to make sure we
72
+ # begin a ping-pong loop with the client.
73
+ super().open()
74
# Wait for the kernel to emit an idle status.
75
self.log.info(f"Connecting to kernel {self.kernel_id}.")
76
await self.connection.connect()
0 commit comments