Skip to content

Commit 2d4bb98

Browse files
authored
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".
1 parent 940b12a commit 2d4bb98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/manager/src/main/java/org/apache/accumulo/manager/FateServiceHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ public void executeFateOperation(TInfo tinfo, TCredentials c, long opid, FateOpe
466466
}
467467

468468
String startRowStr = StringUtils.defaultIfBlank(startRow.toString(), "-inf");
469-
String endRowStr = StringUtils.defaultIfBlank(startRow.toString(), "+inf");
469+
String endRowStr = StringUtils.defaultIfBlank(endRow.toString(), "+inf");
470470

471471
Manager.log.debug("Creating merge op: {} from startRow: {} to endRow: {}", tableId,
472472
startRowStr, endRowStr);

0 commit comments

Comments
 (0)