Repository: hbase Updated Branches: refs/heads/master 00f4ff420 -> 58cd2cf6e
HBASE-12640 Addendum fixes TestThriftHttpServer (Srikanth Srungarapu) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/58cd2cf6 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/58cd2cf6 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/58cd2cf6 Branch: refs/heads/master Commit: 58cd2cf6e28af816d55688cd58ed3262a2d3b1f3 Parents: 00f4ff4 Author: tedyu <[email protected]> Authored: Wed Dec 17 19:56:15 2014 -0800 Committer: tedyu <[email protected]> Committed: Wed Dec 17 19:56:15 2014 -0800 ---------------------------------------------------------------------- .../java/org/apache/hadoop/hbase/thrift/TestThriftHttpServer.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/58cd2cf6/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift/TestThriftHttpServer.java ---------------------------------------------------------------------- diff --git a/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift/TestThriftHttpServer.java b/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift/TestThriftHttpServer.java index 92d05d8..9341ffa 100644 --- a/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift/TestThriftHttpServer.java +++ b/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift/TestThriftHttpServer.java @@ -66,6 +66,7 @@ public class TestThriftHttpServer { @BeforeClass public static void setUpBeforeClass() throws Exception { TEST_UTIL.getConfiguration().setBoolean("hbase.regionserver.thrift.http", true); + TEST_UTIL.getConfiguration().setBoolean("hbase.table.sanity.checks", false); TEST_UTIL.startMiniCluster(); //ensure that server time increments every time we do an operation, otherwise //successive puts having the same timestamp will override each other
