We have humanTask that has to be manually started. It has an enteyCriterion ifPart that has to be fulfilled before this should be possible.
I wrote a test that ensures the behavior. So far so good.
Now an additional requirement is that the task should be repeatable. When I model this, my tests fail because I no longer get a single caseExecution for the given task-key, but two.
I seem to lack knowledge about sentry, repetition and manual activation. What happens here? Can I manually activate many humantasks in parallel? How do I know which one ( the manual activation requires one I’d, but I get two). What happens when I have activated one task, and then switch the if condition, so the entryCriterion does not match?
My assumption was, that I was going to have one human task at every point in time and that a follow up becomes enabled the moment I complete the first.
Could someone enlighten me? Thanks!