mirror of https://github.com/apache/druid.git
Increase test timeout to prevent failing on slow machines (#3224)
constantly timing out on one of slow build machines, increasing the timeout fixed it. Running io.druid.granularity.QueryGranularityTest Tests run: 33, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 11.776 sec - in io.druid.granularity.QueryGranularityTest
This commit is contained in:
parent
90f5d8cd17
commit
7995818220
|
@ -749,7 +749,7 @@ public class QueryGranularityTest
|
|||
Assert.assertFalse("expectedIter not exhausted!?", expectedIter.hasNext());
|
||||
}
|
||||
|
||||
@Test(timeout = 10_000L)
|
||||
@Test(timeout = 60_000L)
|
||||
public void testDeadLock() throws Exception
|
||||
{
|
||||
final URL[] urls = ((URLClassLoader)QueryGranularity.class.getClassLoader()).getURLs();
|
||||
|
|
Loading…
Reference in New Issue