From 20fa56cd8d71b4006f07558988e076a0cb7ef915 Mon Sep 17 00:00:00 2001 From: dheeyi william Date: Mon, 13 Mar 2017 17:29:31 -0400 Subject: [PATCH] HOR-2832 Parallel task doesn't wait for all users to send "Intermediate" Email event --- workflow/engine/classes/class.derivation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/classes/class.derivation.php b/workflow/engine/classes/class.derivation.php index a67fc0ed6..4aaa288bc 100644 --- a/workflow/engine/classes/class.derivation.php +++ b/workflow/engine/classes/class.derivation.php @@ -1249,7 +1249,7 @@ class Derivation switch ($routeType) { case 'SEC-JOIN': //If the all Siblings are done execute the events - if(sizeof($arraySiblings) === 0){ + if (sizeof($arraySiblings) === 0 && !$flagTaskAssignTypeIsMultipleInstance) { //Throw Events $this->executeEvent($nextDel["TAS_UID"], $appFields, $flagFirstIteration, false); }