Skip to content

Commit

Permalink
Increase timeout for waiting of OpenWrt boot in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbrechtL committed Jan 20, 2025
1 parent f42afc6 commit a889bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tests/openwrt_docker_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def wait_for_container_startup(docker_services):
def wait_for_openwrt_startup(docker_services):
try:
docker_services.wait_until_responsive(
timeout=360.0, pause=1, check=lambda: is_openwrt_booted()
timeout=600.0, pause=1, check=lambda: is_openwrt_booted()
)
except Exception as excinfo:
print(get_logs())
Expand Down

0 comments on commit a889bea

Please sign in to comment.