Fix incorrect database name entries

This commit is contained in:
Joshua Boniface 2023-12-09 12:12:00 -05:00
parent 82a7fd3c80
commit 5a7ea25266
2 changed files with 2 additions and 2 deletions

View File

@ -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"],
) )

View File

@ -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"],
) )