From 6179813c9a8aca6ee3480a3d0908030f1f926d9e Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 10 Mar 2018 23:53:21 -0500 Subject: [PATCH] up sleep to 60 seconds --- scripts/run.ps1 | 4 ++-- scripts/run.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/run.ps1 b/scripts/run.ps1 index 134ce9d105..a646f4e4ad 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -106,7 +106,7 @@ elseif($update) { Docker-Compose-Down Update Restart - echo "Waiting for database to come online..." - Start-Sleep -s 30 + echo "Pausing 60 seconds for database to come online. Please wait..." + Start-Sleep -s 60 Update-Database } diff --git a/scripts/run.sh b/scripts/run.sh index 0a784fd1c2..260e7810fd 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -124,7 +124,7 @@ then dockerComposeDown update restart - echo "Waiting for database to come online..." - sleep 30 + echo "Pausing 60 seconds for database to come online. Please wait..." + sleep 60 updateDatabase fi