return props;
}
protected void createWorkflow(Cluster cluster, Process process, Workflow processWorkflow,
String wfName, Path wfPath) throws FalconException {
WORKFLOWAPP wfApp = getWorkflowTemplate(DEFAULT_WF_TEMPLATE);
wfApp.setName(wfName);
try {
addLibExtensionsToWorkflow(cluster, wfApp, EntityType.PROCESS, null);
} catch (IOException e) {
throw new FalconException("Failed to add library extensions for the workflow", e);
}
EngineType engineType = processWorkflow.getEngine();
for (Object object : wfApp.getDecisionOrForkOrJoin()) {
if (!(object instanceof ACTION)) {
continue;
}
String storagePath = getStoragePath(getEntity().getWorkflow().getPath());