Skip to content

Commit

Permalink
chore: Bump healthcheck timeout to 45 seconds (#190)
Browse files Browse the repository at this point in the history
* bump healthcheck timeout to 45 seconds
  • Loading branch information
hubertdeng123 authored Dec 30, 2024
1 parent 1c85390 commit 72e33f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion devservices/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@
DEVSERVICES_CACHE_DIR, "latest_version.txt"
)
DEVSERVICES_LATEST_VERSION_CACHE_TTL = timedelta(minutes=15)
HEALTHCHECK_TIMEOUT = 30
HEALTHCHECK_TIMEOUT = 45
HEALTHCHECK_INTERVAL = 5
2 changes: 1 addition & 1 deletion tests/commands/test_up.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ def test_up_docker_compose_container_healthcheck_failed(
assert "Starting clickhouse" in captured.out.strip()
assert "Starting redis" in captured.out.strip()
assert (
"Container container1 did not become healthy within 30 seconds."
"Container container1 did not become healthy within 45 seconds."
in captured.out.strip()
)

Expand Down

0 comments on commit 72e33f0

Please sign in to comment.