Repository: tez
Updated Branches:
  refs/heads/master d0b189af6 -> 04f0c7685


TEZ-3681. Improve UI error message while trying to sort running DAGs with Auto 
Refresh enabled (Eric Badger via sree)


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

Branch: refs/heads/master
Commit: 04f0c76850b6ce4d417ec47bf597ed1825a7b718
Parents: d0b189a
Author: Sreenath Somarajapuram <[email protected]>
Authored: Wed Apr 5 21:06:06 2017 +0530
Committer: Sreenath Somarajapuram <[email protected]>
Committed: Wed Apr 5 21:06:06 2017 +0530

----------------------------------------------------------------------
 tez-ui/src/main/webapp/app/controllers/dag/vertices.js | 2 +-
 tez-ui/src/main/webapp/app/controllers/table.js        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/04f0c768/tez-ui/src/main/webapp/app/controllers/dag/vertices.js
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/controllers/dag/vertices.js 
b/tez-ui/src/main/webapp/app/controllers/dag/vertices.js
index 283f2d1..313a5a9 100644
--- a/tez-ui/src/main/webapp/app/controllers/dag/vertices.js
+++ b/tez-ui/src/main/webapp/app/controllers/dag/vertices.js
@@ -110,7 +110,7 @@ export default MultiTableController.extend({
           case "pendingTasks":
             this.send("openModal", {
               title: "Cannot sort!",
-              content: `Sorting on ${columnName} is disabled for running DAGs!`
+              content: `Sorting on ${columnName} is disabled for running DAGs 
while Auto Refresh is enabled!`
             });
             return false;
         }

http://git-wip-us.apache.org/repos/asf/tez/blob/04f0c768/tez-ui/src/main/webapp/app/controllers/table.js
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/controllers/table.js 
b/tez-ui/src/main/webapp/app/controllers/table.js
index d472e02..fd01a50 100644
--- a/tez-ui/src/main/webapp/app/controllers/table.js
+++ b/tez-ui/src/main/webapp/app/controllers/table.js
@@ -82,7 +82,7 @@ export default AbstractController.extend({
         case "progress":
           this.send("openModal", {
             title: "Cannot sort!",
-            content: `Sorting on ${columnName} is disabled for running DAGs!`
+            content: `Sorting on ${columnName} is disabled for running DAGs 
while Auto Refresh is enabled!`
           });
           return false;
       }

Reply via email to