dlmarion commented on code in PR #3436:
URL: https://github.com/apache/accumulo/pull/3436#discussion_r1212201426
##########
server/gc/src/test/java/org/apache/accumulo/gc/SimpleGarbageCollectorTest.java:
##########
@@ -65,6 +65,8 @@ public class SimpleGarbageCollectorTest {
private SimpleGarbageCollector gc;
private ConfigurationCopy systemConfig;
private static SiteConfiguration siteConfig =
SiteConfiguration.empty().build();
+ @SuppressWarnings("removal")
+ private final Property p = Property.GC_TRASH_IGNORE;
Review Comment:
Implemented in 2aa689f
##########
server/gc/src/test/java/org/apache/accumulo/gc/SimpleGarbageCollectorTest.java:
##########
@@ -97,7 +99,7 @@ private ConfigurationCopy createSystemConfig() {
conf.put(Property.GC_CYCLE_START.getKey(), "1");
conf.put(Property.GC_CYCLE_DELAY.getKey(), "20");
conf.put(Property.GC_DELETE_THREADS.getKey(), "2");
- conf.put(Property.GC_TRASH_IGNORE.getKey(), "false");
+ conf.put(p.getKey(), "false");
Review Comment:
Implemented in 2aa689f
--
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]