Skip to content

Commit

Permalink
Increase docker compose test wait time (apache#22476)
Browse files Browse the repository at this point in the history
  • Loading branch information
pingzh authored Mar 22, 2022
1 parent cd68540 commit af76f64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker_tests/test_docker_compose_quick_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ def wait_for_container(container_id: str, timeout: int = 300):


def wait_for_terminal_dag_state(dag_id, dag_run_id):
# Wait 30 seconds
for _ in range(30):
# Wait 80 seconds
for _ in range(80):
dag_state = api_request("GET", f"dags/{dag_id}/dagRuns/{dag_run_id}").get("state")
print(f"Waiting for DAG Run: dag_state={dag_state}")
sleep(1)
Expand Down

0 comments on commit af76f64

Please sign in to comment.