DomGarguilo commented on a change in pull request #2243:
URL: https://github.com/apache/accumulo/pull/2243#discussion_r695140367
##########
File path:
server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/Compactable.java
##########
@@ -76,7 +76,8 @@ public Files(SortedMap<StoredTabletFile,DataFileValue>
allFiles,
var compactingFiles =
compacting.stream().flatMap(job ->
job.getFiles().stream()).collect(Collectors.toSet());
Preconditions.checkArgument(this.allFiles.containsAll(compactingFiles),
- "Compacting not in set of all files %s %s", this.allFiles,
compactingFiles);
+ "Compacting not in set of all files %s, compacting files %s",
this.allFiles,
Review comment:
```suggestion
"Compacting not in set of all files: %s, compacting files: %s",
this.allFiles,
```
--
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]