File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# Wait until the Django server is available
4
- while ! curl -s " ${USER_SERVICE_URL } " > /dev/null; do
5
- echo " Waiting for Django server at ${USER_SERVICE_URL } ..."
4
+ while ! curl -s " ${USER_SERVICE } " > /dev/null; do
5
+ echo " Waiting for user-service server at ${USER_SERVICE } ..."
6
6
sleep 5
7
7
done
8
8
9
9
# Wait until the Auth server is available
10
- while ! curl -s " ${AUTH_SERVICE_URL } " > /dev/null; do
11
- echo " Waiting for Auth server at ${AUTH_SERVICE_URL } ..."
10
+ while ! curl -s " ${TOKEN_SERVICE } " > /dev/null; do
11
+ echo " Waiting for token-service at ${TOKEN_SERVICE } ..."
12
12
sleep 5
13
13
done
14
14
15
15
# Wait until the Auth server is available
16
- while ! curl -s " ${GAME_HISTORY_URL } " > /dev/null; do
17
- echo " Waiting for Auth server at ${GAME_HISTORY_URL } ..."
16
+ while ! curl -s " ${GAME_HISTORY } " > /dev/null; do
17
+ echo " Waiting for game-history at ${GAME_HISTORY } ..."
18
18
sleep 5
19
19
done
20
20
You can’t perform that action at this time.
0 commit comments