jobExecutorAcquireByDueDate on Springboot

How to set the jobExecutorAcquireByDueDate to true in camunda springboot starter? can i set it in my bootstrap.yml?

i cant find any examples of this.

Hi @Jean_Robert_Alves,

all properties that are not explicitly listed in the Spring Boot Starter docs can be added with Generic Properties.

Hope that helps.

Best,
Tobias

1 Like

Thanks,
i’m using it this way now:

camunda:
bpm:
generic-properties:
properties:
jobExecutorAcquireByDueDate: true

1 Like