-
Notifications
You must be signed in to change notification settings - Fork 306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle Iopub welcome message for jep#65 #1303
base: main
Are you sure you want to change the base?
Conversation
Thanks for submitting your first pull request! You are awesome! 🤗 |
iopub_future.set_result(None) | ||
|
||
# Resolve with a timeout if we get no response | ||
timeout_future = gen.with_timeout(loop.time() + self.kernel_info_timeout, iopub_future) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if we should use kernel_info_timeout
or something else for the timeout?
Should we add a test, maybe something similar to this? I am not sure how yet... |
I think the |
Hi @Hind-M 👋 Apologies for the long delay here. I'm finally getting some time to review here. Overall, I think the approach here looks good. Is there a kernel that implements the protocol version >=5.4? I couldn't seem to trigger the handshake here using the latest versions of xeus-python or ipykernel. |
Hey @Zsailer! |
That makes sense. I think we should split the Maybe name the unit tests:
The rest of the unit tests are equivalent, but the configuration going into the unit tests are different to trigger the nudge/xpub flow. |
Update
jupyter_server
to complete the JEP #65 implementation.