Repository: hbase Updated Branches: refs/heads/branch-1 9c532a0f9 -> ebf9c9bce
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/ebf9c9bc Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/ebf9c9bc Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/ebf9c9bc Branch: refs/heads/branch-1 Commit: ebf9c9bce70ad3b604d910931dd73b520bcb9579 Parents: 9c532a0 Author: tedyu <[email protected]> Authored: Wed Dec 17 20:00:04 2014 -0800 Committer: tedyu <[email protected]> Committed: Wed Dec 17 20:00:04 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/ebf9c9bc/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 4c9137a..8052c03 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 @@ -65,6 +65,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
