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/07/09 19:58:07 UTC

svn commit: r1359316 - /accumulo/trunk/test/system/auto/stress/restart.py

Author: vines
Date: Mon Jul  9 17:58:07 2012
New Revision: 1359316

URL: http://svn.apache.org/viewvc?rev=1359316&view=rev
Log:
ACCUMULO-629 - found another!


Modified:
    accumulo/trunk/test/system/auto/stress/restart.py

Modified: accumulo/trunk/test/system/auto/stress/restart.py
URL: http://svn.apache.org/viewvc/accumulo/trunk/test/system/auto/stress/restart.py?rev=1359316&r1=1359315&r2=1359316&view=diff
==============================================================================
--- accumulo/trunk/test/system/auto/stress/restart.py (original)
+++ accumulo/trunk/test/system/auto/stress/restart.py Mon Jul  9 17:58:07 2012
@@ -186,18 +186,6 @@ class ShutdownSplitter(TabletShouldSplit
                         os.path.join(ACCUMULO_HOME,'logs') ])
             )
 
-class RestartLoggerLate(KilledTabletServerTest):
-
-    def runTest(self):
-        self.waitForStop(self.ingester, 30)
-        self.stop_tserver(self.hosts[0])
-        self.stop_logger(self.hosts[0])
-        self.start_tserver(self.hosts[0])
-        self.sleep(15)
-        self.start_logger(self.hosts[0])
-        self.waitForStop(self.verify(self.masterHost(), self.options.rows), 100)
-        
-
 def suite():
     result = unittest.TestSuite()
     result.addTest(ShutdownSplitter())
@@ -207,6 +195,5 @@ def suite():
     result.addTest(RestartMasterTest())
     result.addTest(RestartMasterSplitterTest())
     result.addTest(KilledTabletServerTest())
-    result.addTest(RestartLoggerLate())
     result.addTest(KilledTabletServerSplitTest())
     return result