Author: ryota
Date: Tue Nov 26 01:11:48 2013
New Revision: 1545488

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

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=1545488&r1=1545487&r2=1545488&view=diff
==============================================================================
--- oozie/trunk/release-log.txt (original)
+++ oozie/trunk/release-log.txt Tue Nov 26 01:11:48 2013
@@ -1,5 +1,6 @@
 -- Oozie 4.1.0 release (trunk - unreleased)
 
+OOZIE-1626 pig action pop-up is not working properly in UI (ryota)
 OOZIE-1612 When printing Dates to log messages, we should make sure they are 
in oozie.processing.timezone (gwenshap via rkanter)
 OOZIE-1519 Admin command to update the sharelib (puru via ryota)
 OOZIE-1604 <java-opts> and <java-opt> not added to Application Master property 
in uber mode (ryota)
@@ -76,6 +77,7 @@ OOZIE-1440 Build fails in certain enviro
 
 -- Oozie 4.0.1 release (unreleased)
 
+OOZIE-1626 pig action pop-up is not working properly in UI (ryota)
 OOZIE-1607 [Doc]Update workflow specification for chgrp command (puru via 
rohini)
 OOZIE-1542 When extjs isn't installed, the web UI is unhelpfully blank 
(rkanter)
 OOZIE-1565 OOZIE-1481 should only affect v2 of the API, not v1 (rkanter)
@@ -88,6 +90,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-1507 Command queue filling up with duplicate commands from 
RecoveryService (rohini)
 OOZIE-1502 Coordinator Job not going to Failed if a bad HCat-uri is specified 
(mona)

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=1545488&r1=1545487&r2=1545488&view=diff
==============================================================================
--- oozie/trunk/webapp/src/main/webapp/oozie-console.js (original)
+++ oozie/trunk/webapp/src/main/webapp/oozie-console.js Tue Nov 26 01:11:48 2013
@@ -579,7 +579,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