-
-
Notifications
You must be signed in to change notification settings - Fork 93
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
IO errors when closing a buffer that had an active async block #531
Comments
One of the reasons I close buffers is because I have run sth heavy which outputs a lot of text and images. Sometimes I just need this process to finish, and I don't need to see its results in emacs (the results will be logged elsewhere by the code). In these cases, I just want to close the buffer and get rid of the active async blocks, without interrupting or killing the kernel. |
Although it doesn't work right now, would specifying something like This worked previously, but doesn't anymore due to c3892b8. I assume now that Although specifying |
@nnicandro While Additionally, I need the ability to disconnect the kernel so that I can connect to another kernel running on the same IP and port. (This is possible with SSH port forwarding shenanigans.) It allows me to run the code with different hyperparameters simultaneously. I understand that I might be stretching the notebook interface beyond its intended use, and it would be better to refactor the code into proper scripts. However, the notebook interface offers more power and ease of use, making it an attractive choice for my current needs. |
When I close a buffer that has an ongoing async block, I get a lot of these errors:
I need a way to close all the connections of a kernel and "forget" it completely. Here is what I already have, but I don't know how to unsubscribe the active ... "websockets"?
Related:
The text was updated successfully, but these errors were encountered: