Skip to content

Commit 999bc98

Browse files
Bumps durable task library.
Signed-off-by: Elena Kolevska <[email protected]>
1 parent 433356d commit 999bc98

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ Flask>=1.1
1515
# needed for auto fix
1616
ruff===0.2.2
1717
# needed for dapr-ext-workflow
18-
durabletask-dapr >= 0.2.0a4
18+
durabletask-dapr >= 0.2.0a7

examples/workflow/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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"

examples/workflow/simple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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:

ext/dapr-ext-workflow/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ packages = find_namespace:
2525
include_package_data = True
2626
install_requires =
2727
dapr >= 1.15.0rc2
28-
durabletask-dapr >= 0.2.0a4
28+
durabletask-dapr >= 0.2.0a7
2929

3030
[options.packages.find]
3131
include =

0 commit comments

Comments
 (0)