Skip to content

Commit

Permalink
fix: connect to database from id
Browse files Browse the repository at this point in the history
  • Loading branch information
John2360 committed Aug 22, 2024
1 parent 5f2fd5a commit d8056dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fortress_sdk_python/fortress.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def connect_database(self, database_id: str) -> Connection:

response = self.__fortress.get_uri(database_id, "database")

connection = PostgresConnection(
connection = PostgresClient(
response.url,
response.port,
response.username,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fortress-sdk-python"
version = "0.1.10"
version = "0.1.12"
description = "Fortress Platform Python API SDK"
authors = ["Fortress <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit d8056dd

Please sign in to comment.