We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cc34cb commit 400c74fCopy full SHA for 400c74f
examples/demo_workflow/app.py
@@ -139,13 +139,15 @@ def main():
139
140
# Pause Test
141
d.pause_workflow(instance_id=instance_id, workflow_component=workflow_component)
142
+ sleep(5)
143
get_response = d.get_workflow(
144
instance_id=instance_id, workflow_component=workflow_component
145
)
146
print(f'Get response from {workflow_name} after pause call: {get_response.runtime_status}')
147
148
# Resume Test
149
d.resume_workflow(instance_id=instance_id, workflow_component=workflow_component)
150
151
152
153
0 commit comments