Skip to content

Commit

Permalink
Merge pull request #30 from bcgov/chore/undo-connection-string-debug
Browse files Browse the repository at this point in the history
chore: undo debug
  • Loading branch information
dleard authored Jun 8, 2023
2 parents eaae62b + ab48246 commit dcdf92c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
PGUSER = os.getenv('PGUSER')
PGPASS = os.getenv('PGPASSWORD')
PGPORT = int(os.getenv('PGPORT'))
CONNECTION_STRING= 'postgresql://' + {PGUSER} + ':' + {PGPASS} + '@' + {PGHOST} + ':' + {PGPORT} + '/everify'
CONNECTION_STRING= f'postgresql://{PGUSER}:{PGPASS}@{PGHOST}/everify'
engine = create_engine(CONNECTION_STRING)


Expand Down

0 comments on commit dcdf92c

Please sign in to comment.