This is an automated email from the ASF dual-hosted git repository.
ddanielr 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 ef6c349b3e Fix build issue from 2.1 merge
ef6c349b3e is described below
commit ef6c349b3e2812838c212053b16297646c8040b5
Author: Daniel Roberts ddanielr <[email protected]>
AuthorDate: Thu Aug 7 18:42:16 2025 +0000
Fix build issue from 2.1 merge
Fixes equals call between Map and Set objects
---
.../apache/accumulo/server/util/serviceStatus/ServiceStatusReport.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/server/base/src/main/java/org/apache/accumulo/server/util/serviceStatus/ServiceStatusReport.java
b/server/base/src/main/java/org/apache/accumulo/server/util/serviceStatus/ServiceStatusReport.java
index 22b1f58c9e..7b6279404c 100644
---
a/server/base/src/main/java/org/apache/accumulo/server/util/serviceStatus/ServiceStatusReport.java
+++
b/server/base/src/main/java/org/apache/accumulo/server/util/serviceStatus/ServiceStatusReport.java
@@ -163,7 +163,7 @@ public class ServiceStatusReport {
}
// only default group is present, omit grouping from report
if (!summary.getResourceGroups().isEmpty()
- &&
summary.getResourceGroups().equals(Set.of(DEFAULT_RESOURCE_GROUP_NAME))) {
+ &&
summary.getResourceGroups().keySet().equals(Set.of(DEFAULT_RESOURCE_GROUP_NAME)))
{
fmtServiceStatus(sb, reportKey, summary, showHosts);
return;
}