diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-19 07:03:31 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-19 07:23:50 +0200 |
commit | 5335788480d840566d745d39deb85895a5fc93af (patch) | |
tree | b63bd01d1fe8ef2d48dab3a759de942d3c3f3560 | |
parent | 79c4682549aa589644b933396f53c4fd60ec8dc7 (diff) | |
download | gitlab-5335788480d840566d745d39deb85895a5fc93af.tar.gz |
longer docker image startup timeout for tests
-rwxr-xr-x | tools/build_test_env.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_test_env.sh b/tools/build_test_env.sh index 1082d2a..9961333 100755 --- a/tools/build_test_env.sh +++ b/tools/build_test_env.sh @@ -118,7 +118,7 @@ while :; do curl -s http://localhost:8080/users/sign_in 2>/dev/null \ | grep -q "GitLab Community Edition" && break I=$((I+5)) - [ "$I" -lt 120 ] || fatal "timed out" + [ "$I" -lt 180 ] || fatal "timed out" done # Get the token |