I’m trying to retrieve (join) the two branches back together after they have forked and run. How can I accomplish that and retrieve the results from each branch in the fork after the join?
I attempted to do the same with using type “parallel”, but no luck. I want to be able to merge the branches back, that way I can go to task named “checkAdapterResults” and pull in adapter1 and adapter2 results in the checkAdapterResults handler.
I’m getting the error “2019-02-13 15:24:45.778 DEBUG 9396 --- [enerContainer-1] c.c.piper.core.task.SpelTaskEvaluator : EL1008E: Property or field 'adapter1' cannot be found on object of type 'com.creactiviti.piper.core.context.MapContext' - maybe not public or not valid?”
And the same error for “adapter2”.
type: fork
branches:
name: adapter1
label: Web Service Call
type: adapter1
name: adapter2
label: Web Service Call
type: adapter2
Hi Arik,
And the same error for “adapter2”.
type: fork branches:
type: checkAdapterResults name: checkAdapterResults label: Checking Adapter Results adapter1: ${adapter1} adapter2: ${adapter2}
Thank you , Kevin