Updated Branches:
  refs/heads/master 590b40f5f -> 92a9665e0

OOZIE-1672 UI info fetch fails for bundle having large number of coordinators 
(puru via rohini)


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

Branch: refs/heads/master
Commit: 92a9665e0e9124e3c92feb1d28c1d1b9cfb628b1
Parents: 590b40f
Author: Rohini Palaniswamy <[email protected]>
Authored: Fri Jan 17 09:51:45 2014 -0800
Committer: Rohini Palaniswamy <[email protected]>
Committed: Fri Jan 17 09:51:45 2014 -0800

----------------------------------------------------------------------
 release-log.txt                         |  1 +
 webapp/src/main/webapp/oozie-console.js | 11 +++++++++++
 2 files changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oozie/blob/92a9665e/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index ace2f0f..5930bcc 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 4.1.0 release (trunk - unreleased)
 
+OOZIE-1672 UI info fetch fails for bundle having large number of coordinators 
(puru via rohini)
 OOZIE-1666 Child job link not working in safari and chrome (puru via ryota)
 OOZIE-1658 Add bundle, coord, wf and action related information to launched 
M/R jobs (puru via rohini)
 OOZIE-1664 PollablePriorityDelayQueue.poll() returns elements with +ve delay 
(shwethags via rohini)

http://git-wip-us.apache.org/repos/asf/oozie/blob/92a9665e/webapp/src/main/webapp/oozie-console.js
----------------------------------------------------------------------
diff --git a/webapp/src/main/webapp/oozie-console.js 
b/webapp/src/main/webapp/oozie-console.js
index e2822ad..7999d35 100644
--- a/webapp/src/main/webapp/oozie-console.js
+++ b/webapp/src/main/webapp/oozie-console.js
@@ -340,6 +340,7 @@ function jobDetailsPopup(response, request) {
     function fetchDefinition(workflowId) {
         Ext.Ajax.request({
             url: getOozieBase() + 'job/' + workflowId + "?show=definition",
+            timeout: 300000,
             success: function(response, request) {
                 jobDefinitionArea.setRawValue(response.responseText);
             }
@@ -446,6 +447,7 @@ function jobDetailsPopup(response, request) {
             handler: function() {
                 Ext.Ajax.request({
                     url: getOozieBase() + 'job/' + workflowId + "?timezone=" + 
getTimeZone(),
+                    timeout: 300000,
                     success: function(response, request) {
                         jobDetails = eval("(" + response.responseText + ")");
                         jobActionStatus.loadData(jobDetails["actions"]);
@@ -707,6 +709,7 @@ function jobDetailsPopup(response, request) {
     function refreshActionDetails(actionId, detail, urlUnit) {
         Ext.Ajax.request({
             url: getOozieBase() + 'job/' + actionId + "?timezone=" + 
getTimeZone(),
+            timeout: 300000,
             success: function(response, request) {
                 var results = eval("(" + response.responseText + ")");
                 detail.getForm().setValues(results);
@@ -851,6 +854,7 @@ function coordJobDetailsPopup(response, request) {
     function fetchDefinition(coordJobId) {
         Ext.Ajax.request({
             url: getOozieBase() + 'job/' + coordJobId + "?show=definition",
+            timeout: 300000,
             success: function(response, request) {
                 jobDefinitionArea.setRawValue(response.responseText);
             }
@@ -978,6 +982,7 @@ function coordJobDetailsPopup(response, request) {
             handler: function() {
                 Ext.Ajax.request({
                     url: getOozieBase() + 'job/' + coordJobId + "?timezone=" + 
getTimeZone() + "&offset=0&len=0",
+                    timeout: 300000,
                     success: function(response, request) {
                         jobDetails = eval("(" + response.responseText + ")");
                         fs.getForm().setValues(jobDetails);
@@ -1303,6 +1308,7 @@ function bundleJobDetailsPopup(response, request) {
             handler: function() {
                 Ext.Ajax.request({
                     url: getOozieBase() + 'job/' + bundleJobId + "?timezone=" 
+ getTimeZone(),
+                    timeout: 300000,
                     success: function(response, request) {
                         jobDetails = eval("(" + response.responseText + ")");
                         
jobActionStatus.loadData(jobDetails["bundleCoordJobs"]);
@@ -1446,6 +1452,7 @@ function bundleJobDetailsPopup(response, request) {
     function fetchDefinition(bundleJobId) {
         Ext.Ajax.request({
             url: getOozieBase() + 'job/' + bundleJobId + "?show=definition",
+            timeout: 300000,
             success: function(response, request) {
                 jobDefinitionArea.setRawValue(response.responseText);
             }
@@ -1469,6 +1476,7 @@ function bundleJobDetailsPopup(response, request) {
 function jobDetailsGridWindow(workflowId) {
     Ext.Ajax.request({
         url: getOozieBase() + 'job/' + workflowId + "?timezone=" + 
getTimeZone(),
+        timeout: 300000,
         success: jobDetailsPopup
 
     });
@@ -1485,6 +1493,7 @@ function coordJobDetailsGridWindow(coordJobId) {
          });
          */
         url: getOozieBase() + 'job/' + coordJobId + "?timezone=" + 
getTimeZone() + "&offset=0&len=0",
+        timeout: 300000,
         success: coordJobDetailsPopup
     });
 }
@@ -1492,6 +1501,7 @@ function coordJobDetailsGridWindow(coordJobId) {
 function coordActionDetailsGridWindow(coordActionId) {
     Ext.Ajax.request({
         url: getOozieBase() + 'job/' + coordActionId + "?timezone=" + 
getTimeZone(),
+        timeout: 300000,
         success: function(response, request) {
             var coordAction = JSON.parse(response.responseText);
             var workflowId = coordAction.externalId;
@@ -1503,6 +1513,7 @@ function coordActionDetailsGridWindow(coordActionId) {
 function bundleJobDetailsGridWindow(bundleJobId) {
     Ext.Ajax.request({
         url: getOozieBase() + 'job/' + bundleJobId + "?timezone=" + 
getTimeZone(),
+        timeout: 300000,
         success: bundleJobDetailsPopup
     });
 }

Reply via email to