Camunda timer issue after Server restart

Hi

We are facing issues with timer boundary event (non interrupting) which stops working after server restart. Have you faced similar issue and what is possible solution?

Thanks
Abhijeet

Hi,

how are you deploying your process models? If you are using the REST API (eg via modeller or your own CI/CD pipeline), you will want to set the jobExecutorDeploymentAware flag to false.

With deployment aware, the engine will only execute jobs (eg timers) where the deployment was through that engine node. Thus on restart, the engine is not aware of deployments…

Note Ive simplified quite a lot here, but see if setting jobExecutorDeploymentAware to false fixes your issue…

regards

Rob

@Webcyberrob Thank you very much, it solved my problem. :slight_smile: