ninja fix to f8912ce – Stop SSTables being lost from compaction strategy after full repairs

patch by Mick Semb Wever; reviewed by Michael Shuler for CASSANDRA-14423
This commit is contained in:
Mick Semb Wever 2018-07-10 10:25:50 +10:00
parent 9ff78249a0
commit 3482370df5
1 changed files with 2 additions and 1 deletions

View File

@ -27,6 +27,7 @@ import javax.management.ObjectName;
import javax.management.openmbean.OpenDataException;
import javax.management.openmbean.TabularData;
import org.apache.commons.lang3.StringUtils;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Predicate;
import com.google.common.base.Predicates;
@ -581,7 +582,7 @@ public class CompactionManager implements CompactionManagerMBean
}
if (!anticompactRanges.isEmpty())
logger.info("SSTable {} ({}) will be anticompacted on ranges: {}", sstable, sstableBounds, String.join(", ", anticompactRanges));
logger.info("SSTable {} ({}) will be anticompacted on ranges: {}", sstable, sstableBounds, StringUtils.join(anticompactRanges, ", "));
if (!shouldAnticompact)
{