This is an automated email from the ASF dual-hosted git repository.
liuxun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push:
new 88c8563 [ZEPPELIN-4196] Fixed reload note from storage is invalid
88c8563 is described below
commit 88c85632cda7729ef0150a7eedb730eb7b041722
Author: Xun Liu <[email protected]>
AuthorDate: Fri Jun 14 16:14:54 2019 +0800
[ZEPPELIN-4196] Fixed reload note from storage is invalid
### What is this PR for?
Click the refresh button on the zeppelin note list page. Unable to reload
note from file system.
### What type of PR is it?
[Bug Fix]
### What is the Jira issue?
* https://issues.apache.org/jira/browse/ZEPPELIN-4196
### How should this be tested?
* [CI Pass](https://travis-ci.org/liuxunorg/zeppelin/builds/545629754)
### Screenshots (if appropriate)
### Questions:
* Does the licenses files need update?
* Is there breaking changes for older versions?
* Does this needs documentation?
Author: Xun Liu <[email protected]>
Closes #3384 from liuxunorg/ZEPPELIN-4196 and squashes the following
commits:
fdfb5657a [Xun Liu] [ZEPPELIN-4196] Fixed reload note from storage is
invalid
---
.../src/main/java/org/apache/zeppelin/socket/NotebookServer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
b/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
index 2130b98..bc482df 100644
---
a/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
+++
b/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
@@ -583,7 +583,7 @@ public class NotebookServer extends WebSocketServlet
public void broadcastReloadedNoteList(NotebookSocket conn, ServiceContext
context)
throws IOException {
- getNotebookService().listNotesInfo(false, context,
+ getNotebookService().listNotesInfo(true, context,
new WebSocketServiceCallback<List<NoteInfo>>(conn) {
@Override
public void onSuccess(List<NoteInfo> notesInfo,