Repository: hive Updated Branches: refs/heads/master 7a0a39767 -> 6a82a898e
HIVE-16312 : Flaky test: TestHCatClient.testTransportFailure (Barna Zsombor Klara via Ashutosh Chauhan) Signed-off-by: Ashutosh Chauhan <hashut...@apache.org> Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/6a82a898 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/6a82a898 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/6a82a898 Branch: refs/heads/master Commit: 6a82a898e51f805ee49442d59beedf7b7c718fe7 Parents: 7a0a397 Author: Barna Zsombor Klara <zsombor.kl...@cloudera.com> Authored: Mon Apr 3 10:02:14 2017 -0700 Committer: Ashutosh Chauhan <hashut...@apache.org> Committed: Mon Apr 3 10:02:14 2017 -0700 ---------------------------------------------------------------------- .../src/test/java/org/apache/hive/hcatalog/api/TestHCatClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/6a82a898/hcatalog/webhcat/java-client/src/test/java/org/apache/hive/hcatalog/api/TestHCatClient.java ---------------------------------------------------------------------- diff --git a/hcatalog/webhcat/java-client/src/test/java/org/apache/hive/hcatalog/api/TestHCatClient.java b/hcatalog/webhcat/java-client/src/test/java/org/apache/hive/hcatalog/api/TestHCatClient.java index b9cb067..86d3acb 100644 --- a/hcatalog/webhcat/java-client/src/test/java/org/apache/hive/hcatalog/api/TestHCatClient.java +++ b/hcatalog/webhcat/java-client/src/test/java/org/apache/hive/hcatalog/api/TestHCatClient.java @@ -434,7 +434,7 @@ public class TestHCatClient { HCatClient client = HCatClient.create(new Configuration(hcatConf)); boolean isExceptionCaught = false; // Table creation with a long table name causes ConnectionFailureException - final String tableName = "Temptable" + new BigInteger(200, new Random()).toString(2); + final String tableName = "Temptable" + new BigInteger(260, new Random()).toString(2); ArrayList<HCatFieldSchema> cols = new ArrayList<HCatFieldSchema>(); cols.add(new HCatFieldSchema("id", Type.INT, "id columns"));