You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by rk...@apache.org on 2013/06/16 19:52:35 UTC

svn commit: r1493550 - in /oozie/trunk: release-log.txt webapp/src/main/webapp/oozie-console.js

Author: rkanter
Date: Sun Jun 16 17:52:34 2013
New Revision: 1493550

URL: http://svn.apache.org/r1493550
Log:
OOZIE-1420 OOZIE-1365 breaks the action popup in the Web UI (michalisk via rkanter)

Modified:
    oozie/trunk/release-log.txt
    oozie/trunk/webapp/src/main/webapp/oozie-console.js

Modified: oozie/trunk/release-log.txt
URL: http://svn.apache.org/viewvc/oozie/trunk/release-log.txt?rev=1493550&r1=1493549&r2=1493550&view=diff
==============================================================================
--- oozie/trunk/release-log.txt (original)
+++ oozie/trunk/release-log.txt Sun Jun 16 17:52:34 2013
@@ -1,5 +1,6 @@
 -- Oozie 4.1.0 release (trunk - unreleased)
 
+OOZIE-1420 OOZIE-1365 breaks the action popup in the Web UI (michalisk via rkanter)
 OOZIE-1418 Fix bugs around ActionKillX not setting end time, V2SLAServlet and exception handling for event threads (mona)
 OOZIE-1365 The hive action popup in the web UI is broken when externalChildIDs is empty string (michalisk via rkanter)
 OOZIE-1412 Webapp contains all sharedlib dependencies after launcher refactor (rohini)

Modified: oozie/trunk/webapp/src/main/webapp/oozie-console.js
URL: http://svn.apache.org/viewvc/oozie/trunk/webapp/src/main/webapp/oozie-console.js?rev=1493550&r1=1493549&r2=1493550&view=diff
==============================================================================
--- oozie/trunk/webapp/src/main/webapp/oozie-console.js (original)
+++ oozie/trunk/webapp/src/main/webapp/oozie-console.js Sun Jun 16 17:52:34 2013
@@ -565,7 +565,7 @@ function jobDetailsPopup(response, reque
 	function populateUrlUnit(actionStatus, urlUnit) {
 		var consoleUrl = actionStatus["consoleUrl"];
         var externalChildIDs = actionStatus["externalChildIDs"];
-		if(!consoleUrl && !externalChildIDs) {
+		if(consoleUrl && externalChildIDs) {
 	        var urlPrefix = consoleUrl.trim().split(/_/)[0];
             //externalChildIds is a comma-separated string of each child job ID.
             //Create URL list by appending jobID portion after stripping "job"