keith-turner commented on pull request #2235:
URL: https://github.com/apache/accumulo/pull/2235#issuecomment-931737860


   @DomGarguilo in there is a method named `getCandidates()` that has the 
following bit of code in it.
   
   ```java
           case CHOP: {
             switch (chopStatus) {
               case NOT_ACTIVE:
               case SELECTING:
                 return Set.of();
   ```
   
   need to add the new enum to this switch like the following.
   
   ```java
           case CHOP: {
             switch (chopStatus) {
               case NOT_ACTIVE:
               case SELECTING:
               case MARKING:
                 return Set.of();
   ```
   
   This is the code that detemines which files are candidates for a chop 
compaction.  Unless chopStatus is SELECTED it should return the empty set.


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