Parallel gateway - how to wait for 1 to complete

After a parallel gateway is initiated - I only need one of the sequences to complete before moving onto the next step of the process… How should I be modeling this ?

Looking @ the image below… I do not need MANUAL_ACK_ACCEPT to be completed due to the sub process having completed.

image

Hi Steel,
I came up with these two designs:

  1. one design is that you have the main process with 2 separated processes, the one which finish first will initiate the next step and you don’t have to wait for the second one (it would be good to terminate the second one though).

  2. Just put that parallel gw in the sub-process and after 1st activity finish kill it with terminate event and continue with some activity.

Hope this will help you.
Cheers,
Lukas

Thanks Lukas - The terminate solved the problem in this scenario!

Appreciate the help,
Neil