Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase timeout on ddev-router and ddev-webserver for slower machines, fixes #2120 #2123

Merged
merged 3 commits into from
May 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ include build-tools/makefile_components/base_build_go.mak

TESTOS = $(shell uname -s | tr '[:upper:]' '[:lower:]')

TEST_TIMEOUT=120m
TEST_TIMEOUT=150m
BUILD_ARCH = $(shell go env GOARCH)
ifeq ($(BUILD_OS),linux)
DDEV_BINARY_FULLPATH=$(PWD)/$(GOTMP)/bin/ddev
Expand Down
8 changes: 4 additions & 4 deletions pkg/ddevapp/templates.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ services:
{{ end }}
healthcheck:
interval: 1s
retries: 10
start_period: 10s
retries: 20
start_period: 20s
timeout: 120s

{{ if not .OmitDBA }}
Expand Down Expand Up @@ -409,8 +409,8 @@ services:
restart: "no"
healthcheck:
interval: 1s
retries: 10
start_period: 10s
retries: 20
start_period: 20s
timeout: 120s

networks:
Expand Down