-
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Sometimes results of cells execution are not propagated to model (missing document_id
)
#23
Comments
It seems to work with newly created files, but not with anything that was already open. Current best guess: the code which should set this upstream (here) does not work correctly for files which are open before the docprovider extension initialises (or something similar). On the side of this extension, if |
Closing and reopening affected notebooks seems to fix the issue. I will open an issue on jupyter-collaboration. |
Ah, this happens when the
Also, if extension are executing |
I guess there are two ways forward:
|
This may not be a bug in
jupyter-server-nbmodel
, but certainly does have an impact on it.Sometimes cells appear not to be executed at all - the execution counter is not set and the outputs are not shown.
However, inspecting with dev tools I see requests being sent:
When shared models are used it is the responsibility of the server extension to set the values, but maybe it does not do that?
I think this might be due to missing
documentId
. When if fails, this line leads assignsundefined
:jupyter-server-nbmodel/src/executor.ts
Line 110 in 0a6c683
The text was updated successfully, but these errors were encountered: