Skip to content

Commit 1dbd99e

Browse files
committed
fix cypress
1 parent abe24cc commit 1dbd99e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
command: [
2222
'start',
2323
'--optimized',
24-
# '--cache=ispn',
24+
#'--cache=ispn',
2525
'--hostname',
2626
'http://keycloak.localtest.me:9081/auth',
2727
'--db-url',

e2e/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
cd /tmp
44

55
while true; do
6-
keycloakstatus=$(curl -o /dev/null -Isw '%{http_code}\n' http://keycloak.localtest.me:9081/auth/realms/master)
6+
keycloakstatus=$(curl -o /dev/null -sw '%{http_code}\n' http://keycloak.localtest.me:9081/auth/realms/master)
77
echo "$keycloakstatus"
88
if [[ "$keycloakstatus" == "200" ]]; then
99
echo "Keycloak is up"

local/keycloak/nginx-lb.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
upstream backend {
22
server api-services-portal-keycloak-nodes-1:9081;
3-
# server api-services-portal-keycloak-nodes-2:9081;
3+
# server api-services-portal-keycloak-nodes-2:9081;
44
}
55

66
server {

0 commit comments

Comments
 (0)