You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ka...@apache.org on 2018/11/19 22:49:52 UTC

phoenix git commit: PHOENIX-5000 Make SecureUserConnectionsTest as Integration test (Addendum)

Repository: phoenix
Updated Branches:
  refs/heads/master 956755fab -> cfcf615d9


PHOENIX-5000 Make SecureUserConnectionsTest as Integration test (Addendum)


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

Branch: refs/heads/master
Commit: cfcf615d98c682df3b60aa7bd82c6706082bdac2
Parents: 956755f
Author: Karan Mehta <ka...@gmail.com>
Authored: Mon Nov 19 14:48:32 2018 -0800
Committer: Karan Mehta <ka...@gmail.com>
Committed: Mon Nov 19 14:48:32 2018 -0800

----------------------------------------------------------------------
 .../it/java/org/apache/phoenix/jdbc/SecureUserConnectionsIT.java  | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/cfcf615d/phoenix-core/src/it/java/org/apache/phoenix/jdbc/SecureUserConnectionsIT.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/it/java/org/apache/phoenix/jdbc/SecureUserConnectionsIT.java b/phoenix-core/src/it/java/org/apache/phoenix/jdbc/SecureUserConnectionsIT.java
index eaf981b..1ab54d2 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/jdbc/SecureUserConnectionsIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/jdbc/SecureUserConnectionsIT.java
@@ -39,6 +39,7 @@ import org.apache.hadoop.hbase.security.User;
 import org.apache.hadoop.minikdc.MiniKdc;
 import org.apache.hadoop.security.UserGroupInformation;
 import org.apache.hadoop.security.authentication.util.KerberosName;
+import org.apache.phoenix.end2end.NeedsOwnMiniClusterTest;
 import org.apache.phoenix.jdbc.PhoenixEmbeddedDriver.ConnectionInfo;
 import org.apache.phoenix.query.ConfigurationFactory;
 import org.apache.phoenix.util.InstanceResolver;
@@ -47,6 +48,7 @@ import org.apache.phoenix.util.ReadOnlyProps;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
 import org.junit.Test;
+import org.junit.experimental.categories.Category;
 
 /**
  * Tests ConnectionQueryServices caching when Kerberos authentication is enabled. It's not
@@ -54,6 +56,7 @@ import org.junit.Test;
  * a ConcurrentHashMap. We can use a HashSet to determine when instances of ConnectionInfo
  * collide and when they do not.
  */
+@Category(NeedsOwnMiniClusterTest.class)
 public class SecureUserConnectionsIT {
     private static final Log LOG = LogFactory.getLog(SecureUserConnectionsIT.class);
     private static final int KDC_START_ATTEMPTS = 10;