We are on version 7.12. I have read the documentation and tried creating a processes.xml file, shown below, and also adding properties to our Spring Boot YAML file, also shown below, to no avail. Our process still retries regardless of the settings. We really only want this behavior locally when testing/debugging. In production we have re-try enabled. I’m not really sure what is missing or whether we need to configure something in the process resource file since our start event is async and we do have a few save points in the process.
<process-archive name="claim-automator"> <process-engine>default</process-engine> <properties> <property name="isDeleteUponUndeploy">true</property> <property name="isScanForProcessDefinitions">true</property> <property name="failedJobRetryTimeCycle">R0/PT60M</property> </properties> </process-archive>
camunda:
bpm:
application:
delete-upon-undeploy: true
resume-previous-versions: false
job-execution:
enabled: true
default-number-of-retries: 1