File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,4 @@ Flask>=1.1
1515# needed for auto fix
1616ruff===0.2.2
1717# needed for dapr-ext-workflow
18- durabletask-dapr >= 0.2.0a4
18+ durabletask-dapr >= 0.2.0a7
Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ expected_stdout_lines:
4848 - "== APP == Appending 3 to child_orchestrator_string!"
4949 - "== APP == Appending c to child_orchestrator_string!"
5050 - "== APP == Appending c to child_orchestrator_string!"
51- - "== APP == Get response from hello_world_wf after pause call: Suspended "
52- - "== APP == Get response from hello_world_wf after resume call: Running "
51+ - "== APP == Get response from hello_world_wf after pause call: SUSPENDED "
52+ - "== APP == Get response from hello_world_wf after resume call: RUNNING "
5353 - "== APP == New counter value is: 111!"
5454 - "== APP == New counter value is: 1111!"
5555 - "== APP == Workflow completed! Result: Completed"
@@ -78,8 +78,8 @@ The output of this example should look like this:
7878 - "== APP == Appending 3 to child_orchestrator_string!"
7979 - "== APP == Appending c to child_orchestrator_string!"
8080 - "== APP == Appending c to child_orchestrator_string!"
81- - "== APP == Get response from hello_world_wf after pause call: Suspended "
82- - "== APP == Get response from hello_world_wf after resume call: Running "
81+ - "== APP == Get response from hello_world_wf after pause call: SUSPENDED "
82+ - "== APP == Get response from hello_world_wf after resume call: RUNNING "
8383 - "== APP == New counter value is: 111!"
8484 - "== APP == New counter value is: 1111!"
8585 - "== APP == Workflow completed! Result: Completed"
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ def main():
150150 try :
151151 state = wf_client .wait_for_workflow_completion (instance_id , timeout_in_seconds = 30 )
152152 if state .runtime_status .name == 'COMPLETED' :
153- print (" Workflow completed! Result: {}" .format (state .serialized_output .strip ('"' )))
153+ print (' Workflow completed! Result: {}' .format (state .serialized_output .strip ('"' )))
154154 else :
155155 print (f'Workflow failed! Status: { state .runtime_status .name } ' )
156156 except TimeoutError :
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ packages = find_namespace:
2525include_package_data = True
2626install_requires =
2727 dapr >= 1.15.0rc2
28- durabletask-dapr >= 0.2.0a4
28+ durabletask-dapr >= 0.2.0a7
2929
3030[options.packages.find]
3131include =
You can’t perform that action at this time.
0 commit comments