Let say I've parent and child workflow respectively p1 and c1.
JBPM looks like this:
P1---->[script node]--->[business rule]--->[service node]----->[reusable-subprocess calling c1]
C1---->[script node]---->[business rule node]----->[script]
Flow is stucking at c1--->
business rule node. I have no Idea why it is stucking there. If I remove business rule in c1 it is working.
Here I'm using JBPM 5.5.0, and this is my c1--->business rule
dielact "mvel"
rule "rule2"
when
eval(true);
then
System.out.println("rule2::::::");
end
Thanks in advance.