We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ada036 commit 5288032Copy full SHA for 5288032
awswrangler/_databases.py
@@ -90,7 +90,7 @@ def _get_connection_attributes_from_secrets_manager(
90
user=secret_value["username"],
91
password=secret_value["password"],
92
host=secret_value["host"],
93
- port=secret_value["port"],
+ port=int(secret_value["port"]),
94
database=_dbname,
95
ssl_context=None,
96
)
0 commit comments