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 1eeeecf525 Support old prop name if user defined (#6003)
1eeeecf525 is described below

commit 1eeeecf5257a2d284e45a3e2aa85414db89eb9dc
Author: Daniel Roberts <[email protected]>
AuthorDate: Thu Dec 4 13:27:17 2025 -0500

    Support old prop name if user defined (#6003)
    
    The resolver code would attempt to create a threadpool with the old
    property name if it was defined by a user.
    
    This would result in a IllegalArg Exception being thrown.
    
    Adding a passthrough case for the old name property name fixes this issue.
---
 .../src/main/java/org/apache/accumulo/core/util/threads/ThreadPools.java | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/core/src/main/java/org/apache/accumulo/core/util/threads/ThreadPools.java 
b/core/src/main/java/org/apache/accumulo/core/util/threads/ThreadPools.java
index 06e654ffa4..22e5c7491c 100644
--- a/core/src/main/java/org/apache/accumulo/core/util/threads/ThreadPools.java
+++ b/core/src/main/java/org/apache/accumulo/core/util/threads/ThreadPools.java
@@ -317,6 +317,7 @@ public class ThreadPools {
           builder.enableThreadPoolMetrics();
         }
         return builder.build();
+      case MANAGER_BULK_RENAME_THREADS:
       case MANAGER_RENAME_THREADS:
         builder = 
getPoolBuilder(MANAGER_RENAME_POOL).numCoreThreads(conf.getCount(p));
         if (emitThreadPoolMetrics) {

Reply via email to