keith-turner commented on code in PR #5994:
URL: https://github.com/apache/accumulo/pull/5994#discussion_r2579027665
##########
test/src/main/java/org/apache/accumulo/test/compaction/ErasureCodeIT.java:
##########
@@ -122,12 +123,11 @@ public void test() throws Exception {
Property.TABLE_ENABLE_ERASURE_CODES.getKey(), "enable");
c.tableOperations().create(table1, new
NewTableConfiguration().setProperties(options));
- var options2 = Map.of(Property.TABLE_ERASURE_CODE_POLICY.getKey(),
policy1,
- Property.TABLE_ENABLE_ERASURE_CODES.getKey(), "inherit");
- c.tableOperations().create(table2, new
NewTableConfiguration().setProperties(options2));
+ // defaults to "inherit"
+ c.tableOperations().create(table2);
Review Comment:
Could add the following to check this test assumption.
```
assertEquals("inherit",
Property.TABLE_ENABLE_ERASURE_CODES.getDefaultValue())
```
--
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]