Hi,
I have a custom workflow which I don't want to be retried if fails.
if (schemaErrors.size() > 0) {
// session.terminateWorkflow(item.getWorkflow());
String message = LOG.log(Messages.EXCEPTION_RUNNING_UPGRADE_WORKFLOW);
throw new WorkflowException(message);
}
Is there a way to stop retrying once I throw a workflow exception? I have tried with terminateWorkflow but it doesn't seem to work.
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Hi,
If you throw WorkflowException then WF engine will retry the workflow later based on the AEM workflow Engine configuration. If you remove throwing the exception then retry should not occur.
throw new WorkflowException("Unable to complete processing the Workflow Process step", e);
Within the execute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap metaDataMap) you can write the below step which will terminate the workflow.
Workflow workflow = workflowSession.getWorkflow(workItem.getWorkflow().getId());
workflowSession.terminateWorkflow(workflow);
Thanks!
Hi,
If you throw WorkflowException then WF engine will retry the workflow later based on the AEM workflow Engine configuration. If you remove throwing the exception then retry should not occur.
throw new WorkflowException("Unable to complete processing the Workflow Process step", e);