[ 
https://issues.apache.org/jira/browse/OOZIE-3589?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17043213#comment-17043213
 ] 

Andras Salamon commented on OOZIE-3589:
---------------------------------------

Nice catch [~zuston]. It seems to me your solution will call {{copyActionData}} 
even if we never go to {{else}}. I'm not sure if it's a problem, it would be 
good to test it.

>  Wrong using copyActionData method  in ReRunXCommand
> ----------------------------------------------------
>
>                 Key: OOZIE-3589
>                 URL: https://issues.apache.org/jira/browse/OOZIE-3589
>             Project: Oozie
>          Issue Type: Bug
>          Components: core
>            Reporter: Junfan Zhang
>            Assignee: Junfan Zhang
>            Priority: Major
>
> Code is 
> [here|https://github.com/apache/oozie/blob/a40ab5361372aa73c9e4aa386a9c81bd21742aa4/core/src/main/java/org/apache/oozie/command/wf/ReRunXCommand.java#L213].
>  
> I don't think you should use the {{copyActionData}} method in a {{for}} loop. 
> Just call it externally.
> Fixed like:
> {code:java}
> for (int i = 0; i < actions.size(); i++) {
>             // Skipping to delete the sub workflow when rerun failed node 
> option has been provided. As same
>             // action will be used to rerun the job.
>             if (!nodesToSkip.contains(actions.get(i).getName()) &&
>                     !(conf.getBoolean(OozieClient.RERUN_FAIL_NODES, false) &&
>                     
> SubWorkflowActionExecutor.ACTION_TYPE.equals(actions.get(i).getType()))) {
>                 deleteList.add(actions.get(i));
>                 LOG.info("Deleting Action[{0}] for re-run", 
> actions.get(i).getId());
>             }
>         }
> copyActionData(newWfInstance, oldWfInstance);
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to