You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by co...@apache.org on 2016/09/01 01:39:20 UTC

zeppelin git commit: [ZEPPELIN-1040] Show the time when the result is updated

Repository: zeppelin
Updated Branches:
  refs/heads/master e3e19ecbf -> f1a247130


 [ZEPPELIN-1040] Show the time when the result is updated

### What is this PR for?
As per existing usage, the time shown in end of each paragraph is the time the paragraph is updated not when the paragraph is actually executed/run.

_" Took 10 sec. Last updated by anonymous at **August 26 2016, 1:52:01 PM.** "_

PR is aimed at changing the existing usage to show when the paragraph is last executed as this gives  clarification to users about the executed time of paragraph

### What type of PR is it?
 Improvement

### Todos
* [ ] - Task

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1040

### How should this be tested?
1. Start the server and create a new note book
2. create a new paragraph and execute the paragraph
3. Now rerun the paragraph, the time should get updated now inline with execution of the paragraph

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: rajarajan-g <ra...@imaginea.com>

Closes #1367 from rajarajan-g/ZEPPELIN-1040 and squashes the following commits:

d30f1b2 [rajarajan-g] code changed for showing last run time after execution of paragraph


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/f1a24713
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/f1a24713
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/f1a24713

Branch: refs/heads/master
Commit: f1a2471302ed3a6d89f70e3b85c9c20eeddf2056
Parents: e3e19ec
Author: rajarajan-g <ra...@imaginea.com>
Authored: Fri Aug 26 14:00:10 2016 +0530
Committer: Damien CORNEAU <co...@gmail.com>
Committed: Thu Sep 1 10:39:12 2016 +0900

----------------------------------------------------------------------
 zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/f1a24713/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
----------------------------------------------------------------------
diff --git a/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js b/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
index d66fb76..7889270 100644
--- a/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
+++ b/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
@@ -820,7 +820,7 @@ angular.module('zeppelinWebApp').controller('ParagraphCtrl', function($scope, $r
     }
     var user = (pdata.user === undefined || pdata.user === null) ? 'anonymous' : pdata.user;
     var desc = 'Took ' + moment.duration((timeMs / 1000), 'seconds').format('h [hrs] m [min] s [sec]') +
-      '. Last updated by ' + user + ' at ' + moment(pdata.dateUpdated).format('MMMM DD YYYY, h:mm:ss A') + '.';
+      '. Last updated by ' + user + ' at ' + moment(pdata.dateFinished).format('MMMM DD YYYY, h:mm:ss A') + '.';
     if ($scope.isResultOutdated()) {
       desc += ' (outdated)';
     }