mirror of https://github.com/apache/druid.git
Merge pull request #1624 from metamx/expandTimeouts
Expand timeouts on JDBCExtractionNamespaceTest
This commit is contained in:
commit
1abcd75696
|
@ -196,7 +196,7 @@ public class JDBCExtractionNamespaceTest
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(timeout = 500)
|
@Test(timeout = 60_000)
|
||||||
public void testMapping()
|
public void testMapping()
|
||||||
throws ClassNotFoundException, NoSuchFieldException, IllegalAccessException, ExecutionException,
|
throws ClassNotFoundException, NoSuchFieldException, IllegalAccessException, ExecutionException,
|
||||||
InterruptedException
|
InterruptedException
|
||||||
|
@ -232,7 +232,7 @@ public class JDBCExtractionNamespaceTest
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Test(timeout = 500)
|
@Test(timeout = 60_000)
|
||||||
public void testSkipOld()
|
public void testSkipOld()
|
||||||
throws NoSuchFieldException, IllegalAccessException, ExecutionException, InterruptedException
|
throws NoSuchFieldException, IllegalAccessException, ExecutionException, InterruptedException
|
||||||
{
|
{
|
||||||
|
@ -270,7 +270,7 @@ public class JDBCExtractionNamespaceTest
|
||||||
extractionCacheManager.delete(namespace);
|
extractionCacheManager.delete(namespace);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(timeout = 500)
|
@Test(timeout = 60_000)
|
||||||
public void testFindNew()
|
public void testFindNew()
|
||||||
throws NoSuchFieldException, IllegalAccessException, ExecutionException, InterruptedException
|
throws NoSuchFieldException, IllegalAccessException, ExecutionException, InterruptedException
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue