concord icon indicating copy to clipboard operation
concord copied to clipboard

runtime-v2: fix parallel loop execution when no out variable defined

Open brig opened this issue 3 years ago • 0 comments

flows:
  default:
    - call: EmptyFlow
      out: outVar
      loop:
        items:
          - "one"
          - "two"
        mode: parallel

    - log: "outVar: ${outVar}"  # prints [(this Collection), (this Collection)]

  EmptyFlow:
    - return

brig avatar Sep 30 '22 20:09 brig