Commit 297c58f83c2086cf89c8237f459ce88926720f5e
Committed by
GitHub
1 parent
9367871f
Update run-application.sh
reverted postgresql port check
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -28,7 +28,7 @@ fi |
28 | 28 | |
29 | 29 | if [ "$DATABASE_TYPE" == "sql" ]; then |
30 | 30 | if [ "$SPRING_DRIVER_CLASS_NAME" == "org.postgresql.Driver" ]; then |
31 | - until nmap $POSTGRES_HOST -p $POSTGRES_PORT | grep "$POSTGRES_PORT/tcp open\filtered" | |
31 | + until nmap $POSTGRES_HOST -p $POSTGRES_PORT | grep "$POSTGRES_PORT/tcp open" | |
32 | 32 | do |
33 | 33 | echo "Waiting for postgres db to start..." |
34 | 34 | sleep 10 | ... | ... |