dlmarion commented on code in PR #5781:
URL: https://github.com/apache/accumulo/pull/5781#discussion_r2261026141


##########
test/src/main/java/org/apache/accumulo/test/conf/util/ZooPropEditorIT_SimpleSuite.java:
##########
@@ -67,13 +70,18 @@ public void modifyPropTest() throws Exception {
 
       LOG.debug("Tables: {}", client.tableOperations().list());
 
-      // override default in sys, and then over-ride that for table prop
-      
client.instanceOperations().setProperty(Property.TABLE_BLOOM_ENABLED.getKey(), 
"true");
+      // override default in namespace, and then over-ride that for table prop
+      AccumuloException ae = assertThrows(AccumuloException.class, () -> 
client.instanceOperations()

Review Comment:
   Added new tests in ZooPropEditorIT and PropStoreConfigIT for this, in 
220b656.



##########
test/src/main/java/org/apache/accumulo/test/conf/PropStoreConfigIT_SimpleSuite.java:
##########
@@ -97,23 +97,32 @@ public void setTablePropTest() throws Exception {
     try (var client = Accumulo.newClient().from(getClientProps()).build()) {
 
       client.tableOperations().create(table);
+      NamespaceId nid = client.tableOperations().getNamespace(table);
 
       log.debug("Tables: {}", client.tableOperations().list());
 
-      // override default in sys, and then over-ride that for table prop
-      
client.instanceOperations().setProperty(Property.TABLE_BLOOM_ENABLED.getKey(), 
"true");
+      // override default in namespace, and then over-ride that for table prop

Review Comment:
   Fixed this in 220b656



-- 
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]

Reply via email to