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/02/04 19:02:59 UTC

svn commit: r1442253 - in /oozie/branches/branch-3.3: core/src/test/java/org/apache/oozie/command/coord/TestCoordActionInputCheckXCommand.java release-log.txt

Author: rkanter
Date: Mon Feb  4 18:02:59 2013
New Revision: 1442253

URL: http://svn.apache.org/viewvc?rev=1442253&view=rev
Log:
OOZIE-1127 Missed one services.destroy() in OOZIE-1114 (rkanter)

Modified:
    oozie/branches/branch-3.3/core/src/test/java/org/apache/oozie/command/coord/TestCoordActionInputCheckXCommand.java
    oozie/branches/branch-3.3/release-log.txt

Modified: oozie/branches/branch-3.3/core/src/test/java/org/apache/oozie/command/coord/TestCoordActionInputCheckXCommand.java
URL: http://svn.apache.org/viewvc/oozie/branches/branch-3.3/core/src/test/java/org/apache/oozie/command/coord/TestCoordActionInputCheckXCommand.java?rev=1442253&r1=1442252&r2=1442253&view=diff
==============================================================================
--- oozie/branches/branch-3.3/core/src/test/java/org/apache/oozie/command/coord/TestCoordActionInputCheckXCommand.java (original)
+++ oozie/branches/branch-3.3/core/src/test/java/org/apache/oozie/command/coord/TestCoordActionInputCheckXCommand.java Mon Feb  4 18:02:59 2013
@@ -394,6 +394,7 @@ public class TestCoordActionInputCheckXC
         // Override the name node while list for testing purpose only.
         String[] whiteList = new String[1];
         whiteList[0] = "localhost:5330";
+        services.destroy();
         setSystemProperty(HadoopAccessorService.NAME_NODE_WHITELIST, whiteList[0]);
         services = new Services();
         services.init();

Modified: oozie/branches/branch-3.3/release-log.txt
URL: http://svn.apache.org/viewvc/oozie/branches/branch-3.3/release-log.txt?rev=1442253&r1=1442252&r2=1442253&view=diff
==============================================================================
--- oozie/branches/branch-3.3/release-log.txt (original)
+++ oozie/branches/branch-3.3/release-log.txt Mon Feb  4 18:02:59 2013
@@ -1,5 +1,6 @@
 -- Oozie 3.3.2 (unreleased)
 
+OOZIE-1127 Missed one services.destroy() in OOZIE-1114 (rkanter)
 OOZIE-1071 latest EL function is based on action materialization time (rohini via virag)
 OOZIE-1114 Some tests don't use the Services singleton properly (rkanter)
 OOZIE-1101 Fix log messages that contain {0} or similar (rkanter)