Skip to content

Commit afe0caa

Browse files
authored
CI: Increase stop timeout for Python operator example (dora-rs#1361)
The object detection node might be slow to initialize because of the `model = YOLO("yolov8n.pt")` line. The stop-after timer does not wait until initialization is complete, so the stop might happen before all nodes/operators have been initialized. This led to CI failures, such as https://github.com/dora-rs/dora/actions/runs/22112921232/job/63929565837?pr=1358 By increasing the stop-after duration, we increase the chance that the operator is initialized when the stop is triggered.
2 parents 2038d43 + e68b82d commit afe0caa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ jobs:
467467
run: |
468468
echo "Running CI Operator Test"
469469
dora build examples/python-operator-dataflow/dataflow.yml --uv
470-
dora run examples/python-operator-dataflow/dataflow.yml --uv --stop-after 10s
470+
dora run examples/python-operator-dataflow/dataflow.yml --uv --stop-after 20s
471471
472472
- name: "Test Python Example: Multiple Arrays"
473473
timeout-minutes: 30

0 commit comments

Comments
 (0)