You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Connected to database engine "postgresql:///cloudsql/xyz/foo"
...
sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) FATAL: database "cloudsql/xyz/foo" does not exist
jet-admin constructs weird URL and ignores the options:
Connected to database engine "postgresql://foo"
sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) could not translate host name "foo" to address: nodename nor servname provided, or not known
Connected to database engine "postgresql://foo?host=/cloudsql/xyz"
...
sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) could not translate host name "foo?host=" to address: nodename nor servname provided, or not known
Currently, there is no way to connect to a Postgres running on a custom socket (e.g. in Google App Engine).
settings.py
(as per Django docs):jet-admin fails:
settings.py
:jet-admin constructs weird URL and ignores the options:
settings.py
:it still fails to connect:
settings.py
:it's finally constructing a working connection string:
but, in this case Django wouldn't connect to the database.
The text was updated successfully, but these errors were encountered: