if (args.length == 1) {
String executionId = args[0];
DirectIoTransactionEditor editor = new DirectIoTransactionEditor(repository);
editor.setConf(getConf());
try {
editor.abort(executionId);
return 0;
} catch (Exception e) {
LOG.error(MessageFormat.format(
"Failed to abort transaction (executionId={0})",
executionId), e);