[
https://issues.apache.org/jira/browse/OOZIE-2139?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14393692#comment-14393692
]
Rohini Palaniswamy commented on OOZIE-2139:
-------------------------------------------
[~puru] explained that it would not work. Then just a minor change.
{code}
- conf = new XConfiguration(new
StringReader(oldCoordJob.getConf()));
+ XConfiguration jobConf = new XConfiguration(new
StringReader(oldCoordJob.getConf()));
+
+ if (!isConfChange) {
+ conf = jobConf;
+ }
{code}
to
{code}
- conf = new XConfiguration(new
StringReader(oldCoordJob.getConf()));
+
+ if (!isConfChange) {
+ conf = new XConfiguration(new
StringReader(oldCoordJob.getConf()));
+ }
{code}
> Coord update doesn't work for job which is submitted by bundle
> --------------------------------------------------------------
>
> Key: OOZIE-2139
> URL: https://issues.apache.org/jira/browse/OOZIE-2139
> Project: Oozie
> Issue Type: Bug
> Reporter: Purshotam Shah
> Assignee: Purshotam Shah
> Attachments: OOZIE-2139-V1.patch
>
>
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)