mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Remove redundant broadcast
This commit is contained in:
parent
fb2c260230
commit
8413e9b8f4
1 changed files with 0 additions and 2 deletions
|
|
@ -402,7 +402,6 @@ public class NotebookServer extends WebSocketServlet implements
|
|||
for (String id : ids) {
|
||||
if (id.equals(interpreterGroupId)) {
|
||||
broadcast(note.getId(), m);
|
||||
broadcastToWatchers(note.getId(), StringUtils.EMPTY, m);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -563,7 +562,6 @@ public class NotebookServer extends WebSocketServlet implements
|
|||
|
||||
public void broadcastNote(Note note) {
|
||||
broadcast(note.getId(), new Message(OP.NOTE).put("note", note));
|
||||
broadcastToWatchers(note.getId(), "", new Message(OP.NOTE).put("note", note));
|
||||
}
|
||||
|
||||
public void broadcastInterpreterBindings(String noteId, List settingList) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue