We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6920523 commit e642717Copy full SHA for e642717
tests/_env.sh
@@ -32,14 +32,14 @@ wait_for_kong() {
32
# wait for Keycloak to be ready or timeout
33
wait_for_keycloak() {
34
echo "Waiting for Keycloak to be ready..."
35
- for i in $(seq 1 30); do
+ for i in $(seq 1 45); do
36
if test $(curl -s -o /dev/null -w '%{http_code}' $KC_URL/auth/realms/master/.well-known/openid-configuration) -eq 200; then
37
echo "Keycloak endpoint is ready!"
38
return 0
39
fi
40
sleep 1
41
done
42
- echo "Keycloak is not ready after 30 seconds, exiting..."
+ echo "Keycloak is not ready after 45 seconds, exiting..."
43
exit 1
44
}
45
0 commit comments