[
https://issues.apache.org/jira/browse/OOZIE-3487?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16954337#comment-16954337
]
ASF subversion and git services commented on OOZIE-3487:
--------------------------------------------------------
Commit 8002acf772c0a383025d4afb0f70acea2c0c424b in oozie's branch
refs/heads/master from Andras Salamon
[ https://gitbox.apache.org/repos/asf?p=oozie.git;h=8002acf ]
OOZIE-3487 Confusing E0820 error message (matijhs via asalamon74)
> 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)