You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by vi...@apache.org on 2012/01/11 17:37:50 UTC

svn commit: r1230133 - /incubator/accumulo/branches/1.4/test/system/auto/simple/combiner.py

Author: vines
Date: Wed Jan 11 16:37:49 2012
New Revision: 1230133

URL: http://svn.apache.org/viewvc?rev=1230133&view=rev
Log:
fixes ACCUMULO-188 - crossed wires resulting in the combiner changes to not be compatible with the first commit

Modified:
    incubator/accumulo/branches/1.4/test/system/auto/simple/combiner.py

Modified: incubator/accumulo/branches/1.4/test/system/auto/simple/combiner.py
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/test/system/auto/simple/combiner.py?rev=1230133&r1=1230132&r2=1230133&view=diff
==============================================================================
--- incubator/accumulo/branches/1.4/test/system/auto/simple/combiner.py (original)
+++ incubator/accumulo/branches/1.4/test/system/auto/simple/combiner.py Wed Jan 11 16:37:49 2012
@@ -95,7 +95,10 @@ class ClassLoaderTest(TestUtilsMixin, un
         self.checkSum("Test")
         
         shutil.copy(sys.path[0]+"/TestCombinerX.jar", jarPath)
-        out, err, code = self.rootShell(self.masterHost(), "setiter -t test -scan -p 10 -n TestCombiner -class org.apache.accumulo.server.test.functional.TestCombiner\ncf\n")
+	time.sleep(1)
+        out, err, code = self.rootShell(self.masterHost(), "setiter -t test -scan -p 10 -n TestCombiner -class org.apache.accumulo.server.test.functional.TestCombiner\n"
+                     "\n"
+                     "cf\n")
         self.assert_(code == 0)
         self.checkSum("TestX")