milleruntime commented on a change in pull request #2243:
URL: https://github.com/apache/accumulo/pull/2243#discussion_r695158214
##########
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,
+ compactingFiles);
Review comment:
The message itself is still confusing to me. How about this?
```suggestion
"Compacting files %s not in set of all files: %s", compactingFiles,
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]