Hi, In spring boot flowable application, I am trying to set failedJobRetryTimeCycle for service task which is defined in BPMN file from application.properties
I am trying to execute on my local , but I am getting below error
Exception in thread “task-4” org.flowable.common.engine.api.FlowableException: failedJobRetryTimeCycle has wrong format: “${taskretry}”
at org.flowable.engine.impl.cmd.JobRetryCmd.execute(JobRetryCmd.java:127)
In my property file , I defined taskretry=R5/PT2,.
But I am able to read all other property values to my other XMLs. I am facing issue only on my BPMN file.
I also tried ${environment.getProperty(“taskretry”)} and its giving same wrong format error. Please suggest …