From 400c74f326d0f1ecd462965b0d0894904de00aaf Mon Sep 17 00:00:00 2001 From: Elena Kolevska Date: Thu, 13 Feb 2025 16:32:37 +0000 Subject: [PATCH] Restores sleeps in test, as it was decided not to invest making synchronous the APIs that are getting deleted next version Signed-off-by: Elena Kolevska --- examples/demo_workflow/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/demo_workflow/app.py b/examples/demo_workflow/app.py index 8f67fdbdc..b0d078c75 100644 --- a/examples/demo_workflow/app.py +++ b/examples/demo_workflow/app.py @@ -139,6 +139,7 @@ def main(): # Pause Test d.pause_workflow(instance_id=instance_id, workflow_component=workflow_component) + sleep(5) get_response = d.get_workflow( instance_id=instance_id, workflow_component=workflow_component ) @@ -146,6 +147,7 @@ def main(): # Resume Test d.resume_workflow(instance_id=instance_id, workflow_component=workflow_component) + sleep(5) get_response = d.get_workflow( instance_id=instance_id, workflow_component=workflow_component )