Skip to content

Commit

Permalink
fix cypress
Browse files Browse the repository at this point in the history
  • Loading branch information
ikethecoder committed Nov 27, 2024
1 parent abe24cc commit 1dbd99e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
command: [
'start',
'--optimized',
# '--cache=ispn',
#'--cache=ispn',
'--hostname',
'http://keycloak.localtest.me:9081/auth',
'--db-url',
Expand Down
2 changes: 1 addition & 1 deletion e2e/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
cd /tmp

while true; do
keycloakstatus=$(curl -o /dev/null -Isw '%{http_code}\n' http://keycloak.localtest.me:9081/auth/realms/master)
keycloakstatus=$(curl -o /dev/null -sw '%{http_code}\n' http://keycloak.localtest.me:9081/auth/realms/master)
echo "$keycloakstatus"
if [[ "$keycloakstatus" == "200" ]]; then
echo "Keycloak is up"
Expand Down
2 changes: 1 addition & 1 deletion local/keycloak/nginx-lb.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
upstream backend {
server api-services-portal-keycloak-nodes-1:9081;
# server api-services-portal-keycloak-nodes-2:9081;
# server api-services-portal-keycloak-nodes-2:9081;
}

server {
Expand Down

0 comments on commit 1dbd99e

Please sign in to comment.