mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Exit the run paragraph execution when there are errors with the notebook
file system.
This commit is contained in:
parent
950ebda207
commit
21fd49ae28
1 changed files with 2 additions and 0 deletions
|
|
@ -1156,6 +1156,8 @@ public class NotebookServer extends WebSocketServlet implements
|
|||
conn.send(serializeMessage(new Message(OP.ERROR_INFO).put("info",
|
||||
"Oops! There is something wrong with the notebook file system. "
|
||||
+ "Please check the logs for more details.")));
|
||||
// don't run the paragraph when there is error on persisting the note information
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in a new issue