Fix incorrect database name entries
This commit is contained in:
parent
82a7fd3c80
commit
5a7ea25266
|
@ -50,7 +50,7 @@ def open_database(config):
|
||||||
conn = psycopg2.connect(
|
conn = psycopg2.connect(
|
||||||
host=config["api_postgresql_host"],
|
host=config["api_postgresql_host"],
|
||||||
port=config["api_postgresql_port"],
|
port=config["api_postgresql_port"],
|
||||||
dbname=config["api_postgresql_name"],
|
dbname=config["api_postgresql_dbname"],
|
||||||
user=config["api_postgresql_user"],
|
user=config["api_postgresql_user"],
|
||||||
password=config["api_postgresql_password"],
|
password=config["api_postgresql_password"],
|
||||||
)
|
)
|
||||||
|
|
|
@ -167,7 +167,7 @@ def open_db(config):
|
||||||
conn = psycopg2.connect(
|
conn = psycopg2.connect(
|
||||||
host=config["api_postgresql_host"],
|
host=config["api_postgresql_host"],
|
||||||
port=config["api_postgresql_port"],
|
port=config["api_postgresql_port"],
|
||||||
dbname=config["api_postgresql_name"],
|
dbname=config["api_postgresql_dbname"],
|
||||||
user=config["api_postgresql_user"],
|
user=config["api_postgresql_user"],
|
||||||
password=config["api_postgresql_password"],
|
password=config["api_postgresql_password"],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue