You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@oozie.apache.org by "Mate Juhasz (Jira)" <ji...@apache.org> on 2019/10/17 13:04:00 UTC

[jira] [Updated] (OOZIE-3487) Confusing E0820 error message

     [ https://issues.apache.org/jira/browse/OOZIE-3487?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mate Juhasz updated OOZIE-3487:
-------------------------------
    Attachment: OOZIE-3487.patch

> 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
>            Assignee: Mate Juhasz
>            Priority: Minor
>         Attachments: OOZIE-3487.patch
>
>
> 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
(v8.3.4#803005)