Skip to content

Commit fc5b953

Browse files
Remove test sleep (dapr#778)
Signed-off-by: Elena Kolevska <[email protected]>
1 parent cc86f27 commit fc5b953

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

examples/demo_workflow/app.py

Lines changed: 0 additions & 4 deletions
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)