cookpad / kuroko2

Kuroko2 is a web-based job scheduler / workflow engine.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Q] Is it possible to run fork twice?

takisawa opened this issue · comments

I executed the following Kuroko2 script.

### Kuroko2 Script
execute: echo 1
fork:
  execute: echo 2
  execute: echo 3
execute: echo 4
fork:
  execute: echo 5
  execute: echo 6
execute: echo 7

### Result
echo1
  echo 2
  echo 3
echo 4
echo 7
# `echo 5` and `echo 6` were not executed.

Is this in the specifications?

No, It is a bug. I'll fix it.
Thank you for reporting the issue.

Fixed this issue #64, and released as v0.4.2.

Thank you so much!