Skip to content

Commit

Permalink
Merge pull request #575 from MTES-MCT/feat-enable-update-app-production
Browse files Browse the repository at this point in the history
Ajoute la MAJ de la BDD de production au dag update_app
  • Loading branch information
alexisig authored Sep 12, 2024
2 parents 3bb600e + 351d9c2 commit 7113d11
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 7113d11

Please sign in to comment.