You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by jm...@apache.org on 2021/08/24 20:44:31 UTC

[accumulo] branch main updated: Minor changes to compactable error message template (#2243)

This is an automated email from the ASF dual-hosted git repository.

jmanno pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new 4222d88  Minor changes to compactable error message template (#2243)
4222d88 is described below

commit 4222d8828f4236c2d3834f0948b24f6bee86ba22
Author: Jeffrey Manno <je...@gmail.com>
AuthorDate: Tue Aug 24 16:43:29 2021 -0400

    Minor changes to compactable error message template (#2243)
    
    
    Co-authored-by: Dom G. <47...@users.noreply.github.com>
    Co-authored-by: Mike Miller <mm...@apache.org>
---
 .../main/java/org/apache/accumulo/tserver/compactions/Compactable.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/Compactable.java b/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/Compactable.java
index be70321..76307dd 100644
--- a/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/Compactable.java
+++ b/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/Compactable.java
@@ -76,7 +76,7 @@ public interface Compactable {
       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 files %s not in set of all files: %s", compactingFiles, this.allFiles);
       Preconditions.checkArgument(Collections.disjoint(compactingFiles, this.candidates),
           "Compacting and candidates overlap %s %s", compactingFiles, this.candidates);