Skip to content

Commit

Permalink
changed the target postgres variables
Browse files Browse the repository at this point in the history
  • Loading branch information
vishreddy01 committed Apr 17, 2024
1 parent 126b2d8 commit 4bcaf19
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions shared/ods_replication_pg2pg/data_replication_pg2pg.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
src_postgres_port = os.environ['DB_PORT']
src_postgres_database = os.environ['DATABASE']
# In[4]: Retrieve Postgres database configuration
postgres_username = os.environ['TGT_USERNAME']
postgres_password = os.environ['TGT_PASSWORD']
postgres_host = os.environ['TGT_HOST']
postgres_port = os.environ['TGT_PORT']
postgres_database = os.environ['TGT_DATABASE']
postgres_username = os.environ['ODS_USERNAME']
postgres_password = os.environ['ODS_PASSWORD']
postgres_host = os.environ['ODS_HOST']
postgres_port = os.environ['ODS_PORT']
postgres_database = os.environ['ODS_DATABASE']
# In[5]: Script parameters
mstr_schema = os.environ['MSTR_SCHEMA']
app_name = os.environ['APP_NAME']
Expand Down

0 comments on commit 4bcaf19

Please sign in to comment.