This is an automated email from the ASF dual-hosted git repository.
aokolnychyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new 31ff52d Increase timeout in TestHiveTableConcurrency (#1226)
31ff52d is described below
commit 31ff52d4bc85009448439a305d58a9c156707f0a
Author: Sunitha Kambhampati <[email protected]>
AuthorDate: Wed Jul 22 08:42:11 2020 -0700
Increase timeout in TestHiveTableConcurrency (#1226)
---
.../src/test/java/org/apache/iceberg/hive/TestHiveTableConcurrency.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hive/src/test/java/org/apache/iceberg/hive/TestHiveTableConcurrency.java
b/hive/src/test/java/org/apache/iceberg/hive/TestHiveTableConcurrency.java
index a4e1c5b..2e765c3 100644
--- a/hive/src/test/java/org/apache/iceberg/hive/TestHiveTableConcurrency.java
+++ b/hive/src/test/java/org/apache/iceberg/hive/TestHiveTableConcurrency.java
@@ -103,7 +103,7 @@ public class TestHiveTableConcurrency extends
HiveTableBaseTest {
}
executorService.shutdown();
- Assert.assertTrue("Timeout", executorService.awaitTermination(2,
TimeUnit.MINUTES));
+ Assert.assertTrue("Timeout", executorService.awaitTermination(3,
TimeUnit.MINUTES));
Assert.assertEquals(7, Iterables.size(icebergTable.snapshots()));
}
}