Hi
I was wondering what exactly happens with parallel branching in this situation:
branch_route[BR_T] { if (condition) { # Stuff below not required exit or return } do other stuff before relaying
}
Will this break, stop the processing of all branches with higher index as the one being processed? From what I observe, I fear this is the case.
Could I safely use return(1) (vs return which probably is return(0) thus eq exit)? Or would the only safe option be to wrap the 'other stuff' in an else statement?
Mit freundlichen Grüssen
-Benoît Panizzon-