We have a running caseInstance where the repetition rule for a case task (manual start) is set to “complete”, meaning that no other instance of that task can be started until the predecessor is completed. So far, so good.
Now the behavior changes, we want to allow multiple instances of that case task, we set the repetition rule to “startManually”, so we can start as many new tasks as we like via caseService.manuallyStartCaseExecution. Working fine.
But the question is:
when we migrate existing case instances (started with rule set to “complete”) to the latest revision of our case … will we have the follow up case execution in state “enabled” that we need to start a second task? Or will that only appear once the already running task was completed?
How does the camunda cmmn engine deal with changes of repetition rules?
Thank you
Jan