taskflow/taskflow/examples/resume_from_backend.out.txt

22 lines
409 B
Plaintext

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'