set RetryTimeCycle as R0/PT5M. If it is a MultiInstance Camunda delegate then set the RetryTimeCycle value of the multi-instance section and not the outer section
Hi Chris,
I analyzed the problem best on the unit test template.
My embedded process engine did not set the FoxFailedJobCommandFactory + ParseListener but the unit test template does so the retry was only set to specified value when executing test with unit test template.
I added this code to my embedded process engine
List<BpmnParseListener> parseListeners = new ArrayList<>();
parseListeners.add(new FoxFailedJobParseListener());
conf.setCustomPostBPMNParseListeners(parseListeners);
conf…