Skip to content

Commit

Permalink
trying localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
apetenchea committed Oct 13, 2023
1 parent d4ebe30 commit 83b5413
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
- "/bin/sh"
- "-c"
- >
while ! nc -z driver 8000; do sleep 1; done &&
wget --quiet --waitretry=1 --tries=60 -O - http://driver:8000/tests/static/setup.sh |
while ! nc -z localhost 8000; do sleep 1; done &&
wget --quiet --waitretry=1 --tries=60 -O - http://localhost:8000/tests/static/setup.sh |
/bin/sh
steps:
- checkout
Expand All @@ -37,7 +37,7 @@ jobs:
- run:
name: "Wait for ArangoDB starter"
command: |
wget --quiet --waitretry=1 --tries=120 -O - http://db:8528/version
wget --quiet --waitretry=1 --tries=120 -O - http://localhost:8528/version
if [ $? -eq 0 ]; then
echo "starter ready"
exit 0
Expand Down

0 comments on commit 83b5413

Please sign in to comment.