Reputation: 869
I am trying to send an attachment with oozie email action. The attachment is not working because the email action Here
<email xmlns="uri:oozie:email-action:0.1">
does not support attachment but
<email xmlns="uri:oozie:email-action:0.2">
does.
The problem is when we submit the workflow from coordinator it overrides the content to original email-action:0.1 version. How should I fix this.
Upvotes: 0
Views: 159
Reputation: 13402
Update the workflow.xml
file with your changes and replace the workflow.xml
in HDSF. Next time, when your coordinator executes the workflow it will use the update workflow.
Upvotes: 1