Author: ryota
Date: Tue Nov 26 01:10:00 2013
New Revision: 1545485

URL: http://svn.apache.org/r1545485
Log:
OOZIE-1626 pig action pop-up is not working properly in UI (ryota)

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=1545485&r1=1545484&r2=1545485&view=diff
==============================================================================
--- oozie/branches/branch-4.0/release-log.txt (original)
+++ oozie/branches/branch-4.0/release-log.txt Tue Nov 26 01:10:00 2013
@@ -12,6 +12,7 @@ OOZIE-1549 Update hcat documentation to 
 
 -- Oozie 4.0.0 release
 
+OOZIE-1626 pig action pop-up is not working properly in UI (ryota)
 OOZIE-1514 Rerunning a coordinator with no input dependencies puts actions in 
WAITING instead of READY and proceeding (bowenzhangusa via mona)
 OOZIE-1510 Fix branch-4.0 compilation (mona)
 OOZIE-1507 Command queue filling up with duplicate commands from 
RecoveryService (rohini)

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=1545485&r1=1545484&r2=1545485&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 Tue Nov 
26 01:10:00 2013
@@ -569,7 +569,7 @@ function jobDetailsPopup(response, reque
        function populateUrlUnit(actionStatus, urlUnit) {
                var consoleUrl = actionStatus["consoleUrl"];
         var externalChildIDs = actionStatus["externalChildIDs"];
-               if(consoleUrl && externalChildIDs) {
+               if(consoleUrl && externalChildIDs && externalChildIDs != 
"null") {
                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"


Reply via email to