Skip to content

Commit 82e9c4a

Browse files
author
Beria
committed
Fix comment
1 parent 7020f0c commit 82e9c4a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2274,8 +2274,10 @@ angular.module('zeppelinWebApp').controller('ParagraphCtrl', function($scope, $r
22742274
/* It has been observed that append events
22752275
* can be errorneously called even if paragraph
22762276
* execution has ended, and in that case, no append
2277-
* should be made. Also, it has been observed that this
2278-
* could be called in PENDING state as well
2277+
* should be made. Also, it was observed that between PENDING
2278+
* and RUNNING states, append-events can be called and we can't
2279+
* miss those, else during the length of paragraph run, few
2280+
* initial output line/s will be missing.
22792281
*/
22802282
if ($scope.paragraph.id === data.paragraphId &&
22812283
($scope.paragraph.status === 'RUNNING' || $scope.paragraph.status === 'PENDING')) {

0 commit comments

Comments
 (0)