Author: kamrul
Date: Tue Apr 10 23:29:56 2012
New Revision: 1312039

URL: http://svn.apache.org/viewvc?rev=1312039&view=rev
Log:
OOZIE-805 TestCoordSubmitX failing.(Virag via Mohammad)

Modified:
    
incubator/oozie/branches/branch-3.2/core/src/test/java/org/apache/oozie/command/coord/TestCoordSubmitXCommand.java
    incubator/oozie/branches/branch-3.2/release-log.txt

Modified: 
incubator/oozie/branches/branch-3.2/core/src/test/java/org/apache/oozie/command/coord/TestCoordSubmitXCommand.java
URL: 
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.2/core/src/test/java/org/apache/oozie/command/coord/TestCoordSubmitXCommand.java?rev=1312039&r1=1312038&r2=1312039&view=diff
==============================================================================
--- 
incubator/oozie/branches/branch-3.2/core/src/test/java/org/apache/oozie/command/coord/TestCoordSubmitXCommand.java
 (original)
+++ 
incubator/oozie/branches/branch-3.2/core/src/test/java/org/apache/oozie/command/coord/TestCoordSubmitXCommand.java
 Tue Apr 10 23:29:56 2012
@@ -155,7 +155,7 @@ public class TestCoordSubmitXCommand ext
 
         // CASE 4: Success case i.e. Single instances for input and single 
instance for output, but both with ","
         reader = 
IOUtils.getResourceAsReader("coord-multiple-input-instance4.xml", -1);
-        writer = new FileWriter(appPath);
+        writer = new FileWriter(new URI(appPath).getPath());
         IOUtils.copyCharStream(reader, writer);
         sc = new CoordSubmitXCommand(conf, "UNIT_TESTING");
 
@@ -230,7 +230,7 @@ public class TestCoordSubmitXCommand ext
 
         // CASE 4: Success case, where only one instance is configured, but 
expression has a ","
         reader = 
IOUtils.getResourceAsReader("coord-multiple-output-instance4.xml", -1);
-        writer = new FileWriter(appPath);
+        writer = new FileWriter(new URI(appPath).getPath());
         IOUtils.copyCharStream(reader, writer);
         sc = new CoordSubmitXCommand(conf, "UNIT_TESTING");
 

Modified: incubator/oozie/branches/branch-3.2/release-log.txt
URL: 
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.2/release-log.txt?rev=1312039&r1=1312038&r2=1312039&view=diff
==============================================================================
--- incubator/oozie/branches/branch-3.2/release-log.txt (original)
+++ incubator/oozie/branches/branch-3.2/release-log.txt Tue Apr 10 23:29:56 2012
@@ -1,5 +1,6 @@
 -- Oozie 3.2.0 release
 
+OOZIE-805 TestCoordSubmitX failing.(Virag via Mohammad)
 OOZIE-803 UP Remove HadoopAccessorService createFileSystem() method that takes 
config only (tucu)
 OOZIE-802 Add minicluster config as hadoop-site.xml for testcases (tucu)
 OOZIE-796 Making the maximum number of job retrials configurable (Mohamed via 
Mohammad)


Reply via email to