HBASE-19949 TestRSGroupsWithACL fails with ExceptionInInitializerError
This commit is contained in:
parent
1911461a56
commit
d5436d7904
|
@ -37,6 +37,7 @@ import org.apache.hadoop.hbase.security.access.AccessControlLists;
|
||||||
import org.apache.hadoop.hbase.security.access.Permission;
|
import org.apache.hadoop.hbase.security.access.Permission;
|
||||||
import org.apache.hadoop.hbase.security.access.SecureTestUtil;
|
import org.apache.hadoop.hbase.security.access.SecureTestUtil;
|
||||||
import org.apache.hadoop.hbase.security.access.TableAuthManager;
|
import org.apache.hadoop.hbase.security.access.TableAuthManager;
|
||||||
|
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
||||||
import org.apache.hadoop.hbase.testclassification.SecurityTests;
|
import org.apache.hadoop.hbase.testclassification.SecurityTests;
|
||||||
import org.apache.hadoop.hbase.util.Bytes;
|
import org.apache.hadoop.hbase.util.Bytes;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
|
@ -50,7 +51,7 @@ import org.slf4j.LoggerFactory;
|
||||||
* Performs authorization checks for rsgroup operations, according to different
|
* Performs authorization checks for rsgroup operations, according to different
|
||||||
* levels of authorized users.
|
* levels of authorized users.
|
||||||
*/
|
*/
|
||||||
@Category({SecurityTests.class})
|
@Category({SecurityTests.class, MediumTests.class})
|
||||||
public class TestRSGroupsWithACL extends SecureTestUtil{
|
public class TestRSGroupsWithACL extends SecureTestUtil{
|
||||||
private static final Logger LOG = LoggerFactory.getLogger(TestRSGroupsWithACL.class);
|
private static final Logger LOG = LoggerFactory.getLogger(TestRSGroupsWithACL.class);
|
||||||
private static TableName TEST_TABLE = TableName.valueOf("testtable1");
|
private static TableName TEST_TABLE = TableName.valueOf("testtable1");
|
||||||
|
|
Loading…
Reference in New Issue