Author: mona
Date: Mon Mar 18 17:53:30 2013
New Revision: 1457894
URL: http://svn.apache.org/r1457894
Log:
OOZIe-1208 Oozie web-console when displaying Coord Job Log for an action gives
Format Error (rohini via mona)
Modified:
oozie/branches/branch-4.0/release-log.txt
oozie/branches/branch-4.0/webapp/src/main/webapp/oozie-console.js
Modified: oozie/branches/branch-4.0/release-log.txt
URL:
http://svn.apache.org/viewvc/oozie/branches/branch-4.0/release-log.txt?rev=1457894&r1=1457893&r2=1457894&view=diff
==============================================================================
--- oozie/branches/branch-4.0/release-log.txt (original)
+++ oozie/branches/branch-4.0/release-log.txt Mon Mar 18 17:53:30 2013
@@ -1,5 +1,6 @@
-- Oozie 4.0.0 (unreleased)
+OOZIE-1208 Oozie web-console when displaying Coord Job Log for an action gives
Format Error (rohini via mona)
OOZIE-1270 Querying job directly does not pop correct information for
coordinator and bundle (rohini via virag)
OOZIE-1269 Exception in push dependency check when there is also a pull
dependency leaves it in waiting till timeout (rohini via virag)
OOZIE-1267 Dryrun option for push missing deps (virag)
Modified: oozie/branches/branch-4.0/webapp/src/main/webapp/oozie-console.js
URL:
http://svn.apache.org/viewvc/oozie/branches/branch-4.0/webapp/src/main/webapp/oozie-console.js?rev=1457894&r1=1457893&r2=1457894&view=diff
==============================================================================
--- oozie/branches/branch-4.0/webapp/src/main/webapp/oozie-console.js (original)
+++ oozie/branches/branch-4.0/webapp/src/main/webapp/oozie-console.js Mon Mar
18 17:53:30 2013
@@ -741,6 +741,7 @@ function coordJobDetailsPopup(response,
else {
Ext.Ajax.request({
url: getOozieBase() + 'job/' + coordJobId +
"?show=log&type=action&scope="+actionsList,
+ timeout: 300000,
success: function(response, request) {
processAndDisplayLog(response.responseText);
},