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 f1639f1155 fixes ExistingMacIT (#6263)
f1639f1155 is described below
commit f1639f1155957c30e85b52a4b158ef79c20a5f85
Author: Keith Turner <[email protected]>
AuthorDate: Fri Mar 27 13:05:30 2026 -0700
fixes ExistingMacIT (#6263)
This test was failing because it tried to kill the manager an master
process, but they were the same process. Changed the get processes
function in mini to not return both. It used to only return the manager
until #6072 so it seems ok to keep doing that.
---
.../org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
b/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
index aa1b9f3e26..4573199838 100644
---
a/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
+++
b/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
@@ -804,7 +804,6 @@ public class MiniAccumuloClusterImpl implements
AccumuloCluster {
result.put(type, references(control.gcProcess));
}
break;
- case MASTER:
case MANAGER:
if (control.managerProcess != null) {
result.put(type, references(control.managerProcess));
@@ -827,6 +826,7 @@ public class MiniAccumuloClusterImpl implements
AccumuloCluster {
}
break;
case TRACER:
+ case MASTER:
break;
default:
throw new IllegalArgumentException("Unhandled server type : " +
type);