mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
[ZEPPELIN-2256]. poll job progress is called twice
This commit is contained in:
parent
152147122b
commit
d2c27b7c2a
1 changed files with 1 additions and 1 deletions
|
|
@ -2138,7 +2138,7 @@ public class NotebookServer extends WebSocketServlet
|
|||
@Override
|
||||
public void onProgressUpdate(Job job, int progress) {
|
||||
notebookServer.broadcast(note.getId(),
|
||||
new Message(OP.PROGRESS).put("id", job.getId()).put("progress", job.progress()));
|
||||
new Message(OP.PROGRESS).put("id", job.getId()).put("progress", progress));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in a new issue