HBASE-22893 Change the comment in HBaseClassTestRule to reflect change in default test timeouts (#545)
Signed-off-by: Sakthi <sakthi@apache.org>
This commit is contained in:
parent
c88267202a
commit
ec68bf30ba
|
@ -61,7 +61,7 @@ public final class HBaseClassTestRule implements TestRule {
|
||||||
Category[] categories = clazz.getAnnotationsByType(Category.class);
|
Category[] categories = clazz.getAnnotationsByType(Category.class);
|
||||||
for (Class<?> c : categories[0].value()) {
|
for (Class<?> c : categories[0].value()) {
|
||||||
if (c == SmallTests.class || c == MediumTests.class || c == LargeTests.class) {
|
if (c == SmallTests.class || c == MediumTests.class || c == LargeTests.class) {
|
||||||
// All tests have a 10minute timeout.
|
// All tests have a 13 minutes timeout.
|
||||||
return TimeUnit.MINUTES.toSeconds(13);
|
return TimeUnit.MINUTES.toSeconds(13);
|
||||||
}
|
}
|
||||||
if (c == IntegrationTests.class) {
|
if (c == IntegrationTests.class) {
|
||||||
|
|
Loading…
Reference in New Issue