From 46b0cce17b36ff294f6f5d9f9cc4785a1277b30c Mon Sep 17 00:00:00 2001 From: Leo Hemsted Date: Tue, 15 Oct 2019 12:09:06 +0100 Subject: [PATCH] set startup timeout to 10 minutes 5 minutes isn't long enough to scale api at load, leading to failed deploys --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 400252eaa..237016430 100644 --- a/Makefile +++ b/Makefile @@ -191,7 +191,7 @@ cf-deploy: ## Deploys the app to Cloud Foundry cf v3-cancel-zdt-push ${CF_APP} || true cf v3-apply-manifest ${CF_APP} -f <(make -s generate-manifest) - cf v3-zdt-push ${CF_APP} --wait-for-deploy-complete # fails after 5 mins if deploy doesn't work + CF_STARTUP_TIMEOUT=10 cf v3-zdt-push ${CF_APP} --wait-for-deploy-complete # fails after 5 mins if deploy doesn't work .PHONY: cf-deploy-api-db-migration