You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by as...@apache.org on 2018/05/10 17:48:55 UTC

hbase git commit: Addendum HBASE-20004 Client is not able to execute REST queries in a secure cluster

Repository: hbase
Updated Branches:
  refs/heads/branch-1.3 939ee7fd0 -> 75e7714d2


Addendum HBASE-20004 Client is not able to execute REST queries in a secure cluster

Signed-off-by: Ashish Singhi <as...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/75e7714d
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/75e7714d
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/75e7714d

Branch: refs/heads/branch-1.3
Commit: 75e7714d2057917523bb66464de921f180099f71
Parents: 939ee7f
Author: Ashish Singhi <as...@apache.org>
Authored: Thu May 10 23:18:33 2018 +0530
Committer: Ashish Singhi <as...@apache.org>
Committed: Thu May 10 23:18:33 2018 +0530

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hbase/rest/HBaseRESTTestingUtility.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/75e7714d/hbase-rest/src/test/java/org/apache/hadoop/hbase/rest/HBaseRESTTestingUtility.java
----------------------------------------------------------------------
diff --git a/hbase-rest/src/test/java/org/apache/hadoop/hbase/rest/HBaseRESTTestingUtility.java b/hbase-rest/src/test/java/org/apache/hadoop/hbase/rest/HBaseRESTTestingUtility.java
index 628b17c..5624c59 100644
--- a/hbase-rest/src/test/java/org/apache/hadoop/hbase/rest/HBaseRESTTestingUtility.java
+++ b/hbase-rest/src/test/java/org/apache/hadoop/hbase/rest/HBaseRESTTestingUtility.java
@@ -75,7 +75,7 @@ public class HBaseRESTTestingUtility {
       filter = filter.trim();
       context.addFilter(Class.forName(filter), "/*", 0);
     }
-    HttpServerUtil.constrainHttpMethods(context);
+    HttpServerUtil.constrainHttpMethods(context, false);
     LOG.info("Loaded filter classes :" + filterClasses);
       // start the server
     server.start();