Boundary Event

I try to add a boundary timer event to a sub task.
The definition of this boundary timer event is:
Timer Definition Type : Cycle
Timer Definition PT30S

Badly when the process is initialized I got an error:
2021-03-02 12:08:11,216 ERROR - Thread-3 (ActiveMQ-client-global-threads) - - org.camunda.bpm.engine.context - ENGINE-16004 Exception while closing command context: ENGINE-09026 Exception while parsing cron expression ‘PT30S’: Illegal characters for this position: ‘PT3’: org.camunda.bpm.engine.ProcessEngineException: ENGINE-09026 Exception while parsing cron expression ‘PT30S’: Illegal characters for this position: ‘PT3’

Any idea what is wrong?

Hi @fred468,

I think you mixed Time Duration with Time Cycle.

If you want to keep the cycle, you have to specify the repetition: Timer Events | docs.camunda.org.

Otherwise, change to Duration as Timer Definition Type

Hope this helps, Ingo

Thanks you very much for the help! R/PT30S solved the problem.