Skip to content

Commit

Permalink
feat(update_app): enable connection to production
Browse files Browse the repository at this point in the history
  • Loading branch information
alexisig committed Sep 12, 2024
1 parent 3bb600e commit 351d9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/dags/update_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
def get_database_connection_string(environment: str) -> PgConnectionString:
return {
STAGING: {GDAL: Container().gdal_staging_conn(), PSYCOPG: Container().psycopg2_staging_conn()},
# PRODUCTION: {GDAL: Container().gdal_prod_conn(), PSYCOPG: Container().psycopg2_prod_conn()},
PRODUCTION: {GDAL: Container().gdal_prod_conn(), PSYCOPG: Container().psycopg2_prod_conn()},
DEV: {GDAL: Container().gdal_dev_conn(), PSYCOPG: Container().psycopg2_dev_conn()},
}[environment]

Expand Down

0 comments on commit 351d9c2

Please sign in to comment.