You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by mo...@apache.org on 2013/03/18 19:03:56 UTC

svn commit: r1457899 - in /oozie/branches/branch-3.3: release-log.txt webapp/src/main/webapp/oozie-console.js

Author: mona
Date: Mon Mar 18 18:03:55 2013
New Revision: 1457899

URL: http://svn.apache.org/r1457899
Log:
OOZIE-1208 Oozie web-console when displaying Coord Job Log for an action gives Format Error (rohini via mona)

Modified:
    oozie/branches/branch-3.3/release-log.txt
    oozie/branches/branch-3.3/webapp/src/main/webapp/oozie-console.js

Modified: oozie/branches/branch-3.3/release-log.txt
URL: http://svn.apache.org/viewvc/oozie/branches/branch-3.3/release-log.txt?rev=1457899&r1=1457898&r2=1457899&view=diff
==============================================================================
--- oozie/branches/branch-3.3/release-log.txt (original)
+++ oozie/branches/branch-3.3/release-log.txt Mon Mar 18 18:03:55 2013
@@ -1,5 +1,6 @@
 -- Oozie 3.3.2 (unreleased)
 
+OOZIE-1208 Oozie web-console when displaying Coord Job Log for an action gives Format Error (rohini via mona)
 OOZIE-1233 Add ability to configure Oozie to use HTTPS (SSL) (rkanter)
 OOZIE-1242 Dryrun option for workflows mentions version 3.4 when it should be 3.3.2 (rkanter)
 OOZIE-1189 add filter option to specify JobID and AppName in SLA CLI command (egashira via mona)

Modified: oozie/branches/branch-3.3/webapp/src/main/webapp/oozie-console.js
URL: http://svn.apache.org/viewvc/oozie/branches/branch-3.3/webapp/src/main/webapp/oozie-console.js?rev=1457899&r1=1457898&r2=1457899&view=diff
==============================================================================
--- oozie/branches/branch-3.3/webapp/src/main/webapp/oozie-console.js (original)
+++ oozie/branches/branch-3.3/webapp/src/main/webapp/oozie-console.js Mon Mar 18 18:03:55 2013
@@ -734,6 +734,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);
                 },