Closed BoPeng closed 4 years ago
Papermill uses error iopub messages to decide if an error has happened. Although
error
%env --expect-error
changes
execute_reply = {'status': 'error'... }
to
execute_reply = {'status': 'ok'... }
Papermill will still stop because of the error message send to iopub by the kernels.
iopub
That is to say we will have to change error message to stream messages with name=stderr to make papermill work.
stream
name=stderr
Papermill uses
error
iopub messages to decide if an error has happened. Althoughchanges
to
Papermill will still stop because of the
error
message send toiopub
by the kernels.That is to say we will have to change
error
message tostream
messages withname=stderr
to make papermill work.