Skip to content
This repository has been archived by the owner on Jan 6, 2018. It is now read-only.

Closes OOZIE-25 Removing exception trace during wf suspend/kill/resume #811

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/src/main/java/org/apache/oozie/command/XCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public final T call() throws CommandException {
}
}
catch(PreconditionException pex){
LOG.warn(pex.getMessage().toString() + ", Error Code: " + pex.getErrorCode().toString(), pex);
LOG.warn(pex.getMessage().toString() + ", Error Code: " + pex.getErrorCode().toString());
instrumentation.incr(INSTRUMENTATION_GROUP, getName() + ".preconditionfailed", 1);
return null;
}
Expand Down
4 changes: 4 additions & 0 deletions release-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
-- Oozie 3.2.0 release

OOZIE-25 Removing confusing exception trace during wf suspend/kill/resume

-- Oozie 3.1.0 release

OOZIE-11 Adding Distcp Action.
Expand Down