From 2ea2abec4d5d36d41506a87569e8e35afcb7a086 Mon Sep 17 00:00:00 2001 From: haixuantao Date: Tue, 4 Mar 2025 12:05:30 +0100 Subject: [PATCH] Reduce sleep time in example --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afbe95ed..da605d75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -336,21 +336,21 @@ jobs: dora build examples/python-dataflow/dataflow.yml dora start examples/python-dataflow/dataflow.yml --name ci-python --detach - sleep 80 - dora stop --name ci-python --grace-duration 5s + sleep 10 + dora stop --name ci-python --grace-duration 10s # Run Python Dynamic Node Example dora start examples/python-dataflow/dataflow_dynamic.yml --name ci-python-dynamic --detach opencv-plot --name plot - sleep 80 - dora stop --name ci-python-dynamic --grace-duration 5s + sleep 10 + dora stop --name ci-python-dynamic --grace-duration 10s # Run Python Operator Example dora start examples/python-operator-dataflow/dataflow.yml --name ci-python-operator --detach - sleep 80 - dora stop --name ci-python-operator --grace-duration 5s + sleep 10 + dora stop --name ci-python-operator --grace-duration 10s dora destroy