Skip to content

Commit 5414679

Browse files
Remove test sleep (dapr#778)
Signed-off-by: Elena Kolevska <elena@kolevska.com>
1 parent d9e3cb7 commit 5414679

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

examples/demo_workflow/app.py

-4
Original file line numberDiff line numberDiff line change
@@ -139,17 +139,13 @@ def main():
139139

140140
# Pause Test
141141
d.pause_workflow(instance_id=instance_id, workflow_component=workflow_component)
142-
sleep(3)
143-
144142
get_response = d.get_workflow(
145143
instance_id=instance_id, workflow_component=workflow_component
146144
)
147145
print(f'Get response from {workflow_name} after pause call: {get_response.runtime_status}')
148146

149147
# Resume Test
150148
d.resume_workflow(instance_id=instance_id, workflow_component=workflow_component)
151-
sleep(3)
152-
153149
get_response = d.get_workflow(
154150
instance_id=instance_id, workflow_component=workflow_component
155151
)

0 commit comments

Comments
 (0)