mirror of https://github.com/dapr/quickstarts.git
Update tutorials/workflow/python/fundamentals/basic/basic_workflow.py
Co-authored-by: Alice Gibbons <alicejgibbons@gmail.com> Signed-off-by: Marc Duiker <marcduiker@users.noreply.github.com>
This commit is contained in:
parent
f3b097dc49
commit
e16a4ca57c
|
@ -4,7 +4,7 @@ import dapr.ext.workflow as wf
|
|||
wf_runtime = wf.WorkflowRuntime()
|
||||
|
||||
"""
|
||||
Workflows orchestrate activities and other (child)workflows, and include business logic (if/else or switch statements).
|
||||
Workflows orchestrate activities and other (child) workflows, and include business logic (if/else or switch statements).
|
||||
Workflow code must be be deterministic. Any non-deterministic behavior should be written inside activities.
|
||||
|
||||
Workflow definitions use the `workflow` decorator to define a workflow.
|
||||
|
|
Loading…
Reference in New Issue