removing unused variable

This commit is contained in:
alexjacks92 2014-02-25 15:45:31 -05:00
parent aa5fc97668
commit b9f14fc61b

View File

@ -267,13 +267,10 @@ public class RegressionTest extends TestCase {
logger.info("Enqueue took " + (System.currentTimeMillis() - start) + "ms");
int count = 0;
while (man.isIngestRunning()) {
count++;
new Timeout("pausing", 1000).sleep(); // give it a second (or five) to process
}
logger.info("count was " + count);
count = 0;
new Timeout("pausing", 15000).sleep(); // give it a second (or fifteen) to process
boolean sleep = true;
//boolean sleep = true;
while (man.areModulesRunning()) {
count++;
logger.info("count is " + count);