Repository: incubator-zeppelin Updated Branches: refs/heads/master 71c1af84a -> e8fe3c18b
Fix for ZEPPELIN-478 Steps to repro the issue The following is in case of FIFO scheduler 1.Run a para(say para1-> %sh sleep 100). The status of the para is "RUNNING". A new last para(say para2) is created 2.Now run some thing from para2.(eg: %sh ls )(para1 should be "RUNNING") Expected: The status of para2 should be "PENDING" Current: The status of para2 is "READY" Author: karuppayya <[email protected]> Closes #506 from Karuppayya/ZEPPELIN-478 and squashes the following commits: f10372b [karuppayya] Fix for ZEPPELIN-478 Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/e8fe3c18 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/e8fe3c18 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/e8fe3c18 Branch: refs/heads/master Commit: e8fe3c18bf48f11de5f73da940f626087564612c Parents: 71c1af8 Author: karuppayya <[email protected]> Authored: Wed Dec 2 20:59:05 2015 +0530 Committer: Damien CORNEAU <[email protected]> Committed: Tue Dec 8 13:49:42 2015 +0900 ---------------------------------------------------------------------- zeppelin-web/src/app/notebook/notebook.controller.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/e8fe3c18/zeppelin-web/src/app/notebook/notebook.controller.js ---------------------------------------------------------------------- diff --git a/zeppelin-web/src/app/notebook/notebook.controller.js b/zeppelin-web/src/app/notebook/notebook.controller.js index fc9acb1..6c3fc4e 100644 --- a/zeppelin-web/src/app/notebook/notebook.controller.js +++ b/zeppelin-web/src/app/notebook/notebook.controller.js @@ -389,6 +389,7 @@ angular.module('zeppelinWebApp').controller('NotebookCtrl', function($scope, $ro $scope.note.paragraphs.splice(index, 0, note.paragraphs[index]); break; } + $scope.$broadcast('updateParagraph', {paragraph: note.paragraphs[index]}); } }
