blob: e4a30cf339891b89d2f82b907265a29fa466f6ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
At the beginning, there is no state:
Flow state: None
Running:
executing first==1.0
After running:
Flow state: SUSPENDED
boom==1.0: SUCCESS, result=None
first==1.0: SUCCESS, result=u'ok'
second==1.0: PENDING, result=None
Resuming and running again:
executing second==1.0
At the end:
Flow state: SUCCESS
boom==1.0: SUCCESS, result=None
first==1.0: SUCCESS, result=u'ok'
second==1.0: SUCCESS, result=u'ok'
|