From 115c93895616252a0f7156c197d6c2a7e83e00d7 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 9 Mar 2018 22:55:43 -0500 Subject: [PATCH] sleep 30 seconds before running db migration --- scripts/run.ps1 | 2 +- scripts/run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run.ps1 b/scripts/run.ps1 index f634021c1b..3bf547c339 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -106,6 +106,6 @@ elseif($update) { Docker-Compose-Down Update Restart - Start-Sleep -s 7 + Start-Sleep -s 30 Update-Database } diff --git a/scripts/run.sh b/scripts/run.sh index 8e1d46b3c5..cfb8eaa338 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -124,6 +124,6 @@ then dockerComposeDown update restart - sleep 7 + sleep 30 updateDatabase fi