Skip to content

Commit d5f02a7

Browse files
Small fixes
Signed-off-by: Elena Kolevska <[email protected]>
1 parent 3dd98dc commit d5f02a7

File tree

2 files changed

+19
-20
lines changed

2 files changed

+19
-20
lines changed

daprdocs/content/en/python-sdk-docs/python-sdk-extensions/python-workflow-ext/_index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ def task_chain_workflow(ctx: wf.DaprWorkflowContext, wf_input: int):
5252
except Exception as e:
5353
yield ctx.call_activity(error_handler, input=str(e))
5454
raise
55-
# TODO update to set custom status
5655
return [result1, result2]
5756

5857

daprdocs/content/en/python-sdk-docs/python-sdk-extensions/python-workflow-ext/python-workflow.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -60,25 +60,25 @@ dapr run --app-id wf-simple-example --dapr-grpc-port 50001 --resources-path comp
6060
**Expected output**
6161

6262
```
63-
- "== APP == Hi Counter!"
64-
- "== APP == New counter value is: 1!"
65-
- "== APP == New counter value is: 11!"
66-
- "== APP == Retry count value is: 0!"
67-
- "== APP == Retry count value is: 1! This print statement verifies retry"
68-
- "== APP == Appending 1 to child_orchestrator_string!"
69-
- "== APP == Appending a to child_orchestrator_string!"
70-
- "== APP == Appending a to child_orchestrator_string!"
71-
- "== APP == Appending 2 to child_orchestrator_string!"
72-
- "== APP == Appending b to child_orchestrator_string!"
73-
- "== APP == Appending b to child_orchestrator_string!"
74-
- "== APP == Appending 3 to child_orchestrator_string!"
75-
- "== APP == Appending c to child_orchestrator_string!"
76-
- "== APP == Appending c to child_orchestrator_string!"
77-
- "== APP == Get response from hello_world_wf after pause call: Suspended"
78-
- "== APP == Get response from hello_world_wf after resume call: Running"
79-
- "== APP == New counter value is: 111!"
80-
- "== APP == New counter value is: 1111!"
81-
- "== APP == Workflow completed! Result: "Completed"
63+
- "== APP == Hi Counter!"
64+
- "== APP == New counter value is: 1!"
65+
- "== APP == New counter value is: 11!"
66+
- "== APP == Retry count value is: 0!"
67+
- "== APP == Retry count value is: 1! This print statement verifies retry"
68+
- "== APP == Appending 1 to child_orchestrator_string!"
69+
- "== APP == Appending a to child_orchestrator_string!"
70+
- "== APP == Appending a to child_orchestrator_string!"
71+
- "== APP == Appending 2 to child_orchestrator_string!"
72+
- "== APP == Appending b to child_orchestrator_string!"
73+
- "== APP == Appending b to child_orchestrator_string!"
74+
- "== APP == Appending 3 to child_orchestrator_string!"
75+
- "== APP == Appending c to child_orchestrator_string!"
76+
- "== APP == Appending c to child_orchestrator_string!"
77+
- "== APP == Get response from hello_world_wf after pause call: Suspended"
78+
- "== APP == Get response from hello_world_wf after resume call: Running"
79+
- "== APP == New counter value is: 111!"
80+
- "== APP == New counter value is: 1111!"
81+
- "== APP == Workflow completed! Result: "Completed"
8282
```
8383

8484
## What happened?

0 commit comments

Comments
 (0)