Andras Salamon created OOZIE-3487:
-------------------------------------
Summary: Confusing E0820 error message
Key: OOZIE-3487
URL: https://issues.apache.org/jira/browse/OOZIE-3487
Project: Oozie
Issue Type: Bug
Affects Versions: trunk
Reporter: Andras Salamon
E0820 error messages are confusing:
{noformat}
Action user retry max [3] is over system defined max [3], re-assign to use
system max.{noformat}
It's not true that 3 is over 3.
It's a bug in
[LiteWorkflowStoreService|https://github.com/apache/oozie/blob/master/core/src/main/java/org/apache/oozie/service/LiteWorkflowStoreService.java]
{noformat}
if (ret > max) {
ret = max;
log.warn(ErrorCode.E0820.getTemplate(), ret, max);
}
{noformat}
We overwrite the max value before we print out the error messge.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)