dlmarion commented on code in PR #5781:
URL: https://github.com/apache/accumulo/pull/5781#discussion_r2260869887
##########
test/src/main/java/org/apache/accumulo/test/NamespacesIT_SimpleSuite.java:
##########
@@ -871,78 +870,6 @@ public void testPermissions() throws Exception {
}
}
- @Test
- public void verifySystemPropertyInheritance() throws Exception {
-
- try (AccumuloClient client =
- getCluster().createAccumuloClient(getPrincipal(), new
PasswordToken(getRootPassword()))) {
- client.securityOperations().grantNamespacePermission(getPrincipal(),
"accumulo",
- NamespacePermission.ALTER_NAMESPACE);
- client.securityOperations().grantNamespacePermission(getPrincipal(), "",
- NamespacePermission.ALTER_NAMESPACE);
- }
-
- String t1 = "1";
- String t2 = namespace + "." + t1;
- c.tableOperations().create(t1);
- c.namespaceOperations().create(namespace);
- c.tableOperations().create(t2);
-
- // verify iterator inheritance
- _verifySystemPropertyInheritance(t1, t2,
Property.TABLE_ITERATOR_PREFIX.getKey() + "scan.sum",
Review Comment:
> or is it even possible test this?
That's why I removed it. There is another test in this class named
`verifyPropertyInheritance`, so I think this is just testing system level
inheritance which no longer applies. Could modify this test after the resoruce
group config PR is merged to add that test.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]