dlmarion commented on a change in pull request #2562:
URL: https://github.com/apache/accumulo/pull/2562#discussion_r823988291
##########
File path:
shell/src/main/java/org/apache/accumulo/shell/commands/FateCommand.java
##########
@@ -243,7 +248,7 @@ private boolean cancelSubmittedTxs(final Shell shellState,
String[] args)
throws AccumuloException, AccumuloSecurityException {
ClientContext context = shellState.getContext();
for (int i = 1; i < args.length; i++) {
- Long txid = Long.parseLong(args[i]);
+ Long txid = Long.parseLong(args[i], 16);
Review comment:
> Also, was this a bug before that the radix wasn't 16?
Yes, Mike found it in testing.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]