Skip to content

Commit

Permalink
Apply PR #806
Browse files Browse the repository at this point in the history
  • Loading branch information
wlorenzetti committed Jun 18, 2024
1 parent 2ab92d0 commit d1c12ba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci_scripts/setup_suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ if [ ! -e ${SETUP_DONE_FILE} ]; then
ls ${PROJECTS_DIR} || mkdir ${PROJECTS_DIR}
ls ${DATASOURCE_PATH} || mkdir ${DATASOURCE_PATH}

wait-for-it -h ${G3WSUITE_POSTGRES_HOST:-postgis} -p ${G3WSUITE_POSTGRES_PORT:-5432} -t 60
until pg_isready -h ${G3WSUITE_POSTGRES_HOST:-postgis} -p ${G3WSUITE_POSTGRES_PORT:-5432}; do
echo "wait 30s until is ready"
sleep 30;
done

pushd .
cd ${DJANGO_DIRECTORY}/core/static
Expand Down

0 comments on commit d1c12ba

Please sign in to comment.