Testing a theory about timeouts causing the post-ingest hang.

This commit is contained in:
alexjacks92 2014-02-25 13:00:48 -05:00
parent 590d5ef384
commit da60c4ec80

View File

@ -279,7 +279,8 @@ public class RegressionTest extends TestCase {
// but randomize the timing so that we don't always get the same error // but randomize the timing so that we don't always get the same error
// consistently, making it seem like default behavior // consistently, making it seem like default behavior
Random rand = new Random(); Random rand = new Random();
new Timeout("pausing", 10000 + (rand.nextInt(15000) + 5000)).sleep(); new Timeout("pausing", 10000).sleep();
//new Timeout("pausing", 10000 + (rand.nextInt(15000) + 5000)).sleep();
screenshot("Finished Ingest"); screenshot("Finished Ingest");
} }