small logging edit
This commit is contained in:
parent
d4772fb325
commit
4971917417
@ -1,9 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
echo "Waiting for postgres..."
|
|
||||||
python wait_for_db.py
|
python wait_for_db.py
|
||||||
echo "PostgreSQL started"
|
|
||||||
|
|
||||||
python manage.py makemigrations
|
python manage.py makemigrations
|
||||||
python manage.py migrate
|
python manage.py migrate
|
||||||
python manage.py collectstatic --noinput
|
python manage.py collectstatic --noinput
|
||||||
|
|||||||
@ -4,7 +4,7 @@ import os
|
|||||||
|
|
||||||
port = int(os.environ.get("SQL_PORT")) # 5432
|
port = int(os.environ.get("SQL_PORT")) # 5432
|
||||||
db_name = os.environ.get("SQL_HOST")
|
db_name = os.environ.get("SQL_HOST")
|
||||||
print(f"database at {db_name}:{port}")
|
print(f"Waiting for database at {db_name}:{port}")
|
||||||
|
|
||||||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
while True:
|
while True:
|
||||||
@ -14,3 +14,5 @@ while True:
|
|||||||
break
|
break
|
||||||
except socket.error:
|
except socket.error:
|
||||||
time.sleep(0.1)
|
time.sleep(0.1)
|
||||||
|
|
||||||
|
print(f"Database active")
|
||||||
Loading…
Reference in New Issue
Block a user