Skip to content
Snippets Groups Projects
Commit 9052f92b authored by Anja Leichsenring's avatar Anja Leichsenring Committed by Andreas Fernandez
Browse files

[TASK] Increase wait limit for mssql containers

For testing mssql based jobs, the wait limit for the database
to answer gets raised from 60 to 120 seconds to avoid build
failures solely caused by the container being up too late.

Releases: master, 9.5, 8.7
Resolves: #89986
Change-Id: If88949ed4dd978af1e349b524a40069b606dcb63
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/62739


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Tested-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
parent adbc6746
Branches
Tags
......@@ -169,7 +169,7 @@ services:
echo Waiting for database start
COUNT=0
while ! nc -z mssql2017cu17 1433; do
if [ "$${COUNT}" -ge "60" ]; then
if [ "$${COUNT}" -ge "120" ]; then
echo Database did not come up
exit 1
fi
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment