You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the do_execute method seems to always return success status:
return {'status': 'ok',
In the case that the cell execution failed (e.g. kompile returning a non-zero exit code), the function should probably return a different status . Presumably Jupyter would then handle this in a nice, standard way.
The text was updated successfully, but these errors were encountered:
Currently, the
do_execute
method seems to always return success status:return {'status': 'ok',
In the case that the cell execution failed (e.g.
kompile
returning a non-zero exit code), the function should probably return a different status . Presumably Jupyter would then handle this in a nice, standard way.The text was updated successfully, but these errors were encountered: