Skip to content

Commit

Permalink
Merge pull request #18 from arthurtabbal/main
Browse files Browse the repository at this point in the history
Bugfix: cast to str before quote parse
  • Loading branch information
marceloarocha authored Jul 2, 2024
2 parents 3253a61 + a7e9646 commit 8d4d55d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/resources/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
DATABASE = os.getenv("DB_DATABASE")
PORT = os.getenv("DB_PORT")
USER = os.getenv("DB_USER")
PASS = quote(os.getenv("DB_PASS"))
PASS = quote(str(os.getenv("DB_PASS")))

# Pool parameters
POOL_SIZE = os.getenv("POOL_SIZE")
Expand Down

0 comments on commit 8d4d55d

Please sign in to comment.