We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b21fdda commit 58106a0Copy full SHA for 58106a0
tools/build_test_env.sh
@@ -75,7 +75,9 @@ OK="echo -e ${GREEN}OK${NC}"
75
log "Waiting for gitlab to come online... "
76
I=0
77
while :; do
78
- sleep 5
+ sleep 1
79
+ docker top gitlab-test >/dev/null 2>&1 || fatal "docker failed to start"
80
+ sleep 4
81
curl -s http://localhost:8080/users/sign_in 2>/dev/null \
82
| grep -q "GitLab Community Edition" && break
83
let I=I+5
0 commit comments