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 2d4bb98de4 Use the correct variable (#6406)
2d4bb98de4 is described below
commit 2d4bb98de497e69d206e7cfc0255b3810c80ea80
Author: Daniel Roberts <[email protected]>
AuthorDate: Mon Jun 1 15:57:56 2026 -0400
Use the correct variable (#6406)
The merge command should be returning the start and end rows for the
merge op.
If a user only defined an endRow arg then the op message would state that
they were merging "-inf" to "+inf".
---
.../src/main/java/org/apache/accumulo/manager/FateServiceHandler.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/server/manager/src/main/java/org/apache/accumulo/manager/FateServiceHandler.java
b/server/manager/src/main/java/org/apache/accumulo/manager/FateServiceHandler.java
index 2f4e6d496c..c15fc8c426 100644
---
a/server/manager/src/main/java/org/apache/accumulo/manager/FateServiceHandler.java
+++
b/server/manager/src/main/java/org/apache/accumulo/manager/FateServiceHandler.java
@@ -466,7 +466,7 @@ class FateServiceHandler implements FateService.Iface {
}
String startRowStr = StringUtils.defaultIfBlank(startRow.toString(),
"-inf");
- String endRowStr = StringUtils.defaultIfBlank(startRow.toString(),
"+inf");
+ String endRowStr = StringUtils.defaultIfBlank(endRow.toString(),
"+inf");
Manager.log.debug("Creating merge op: {} from startRow: {} to endRow:
{}", tableId,
startRowStr, endRowStr);