This is an automated email from the ASF dual-hosted git repository. kturner pushed a commit to branch 2.1 in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push: new 0e7417d036 Fixed bug with USER compaction hints showing on SYSTEM compactions (#4730) 0e7417d036 is described below commit 0e7417d0369aca85e149563cc52ad7c9108dfe6d Author: Kevin Rathbun <43969518+kevinrr...@users.noreply.github.com> AuthorDate: Wed Jul 10 15:04:59 2024 -0400 Fixed bug with USER compaction hints showing on SYSTEM compactions (#4730) Closes #4460 --- .../main/java/org/apache/accumulo/tserver/tablet/CompactableImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/CompactableImpl.java b/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/CompactableImpl.java index 37b23dc6c4..6d0d4b3446 100644 --- a/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/CompactableImpl.java +++ b/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/CompactableImpl.java @@ -1277,10 +1277,10 @@ public class CompactableImpl implements Compactable { if (job.getKind() == CompactionKind.USER) { cInfo.iters = compactionConfig.getIterators(); cInfo.checkCompactionId = this.compactionId; + cInfo.localCompactionCfg = this.compactionConfig; } cInfo.localHelper = this.chelper; - cInfo.localCompactionCfg = this.compactionConfig; } // Check to ensure the tablet actually has these files now that they are reserved. Compaction