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

ddanielr 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 d6c466fa22 Remove duplicate pool name prefix (#6349)
d6c466fa22 is described below

commit d6c466fa223628ac9c84f9f4939ea56290e229b4
Author: Daniel Roberts <[email protected]>
AuthorDate: Thu Apr 30 09:32:15 2026 -0400

    Remove duplicate pool name prefix (#6349)
---
 .../apache/accumulo/tserver/compactions/InternalCompactionExecutor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/InternalCompactionExecutor.java
 
b/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/InternalCompactionExecutor.java
index 618f6463b3..78d880ab2a 100644
--- 
a/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/InternalCompactionExecutor.java
+++ 
b/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/InternalCompactionExecutor.java
@@ -208,7 +208,7 @@ public class InternalCompactionExecutor implements 
CompactionExecutor {
 
   public void setThreads(int numThreads) {
     ThreadPools.resizePool(threadPool, () -> numThreads,
-        ACCUMULO_POOL_PREFIX.poolName + ".accumulo.pool.compaction." + ceid);
+        ACCUMULO_POOL_PREFIX.poolName + ".compaction." + ceid);
   }
 
   @Override

Reply via email to