diff --git a/fortress_sdk_python/fortress.py b/fortress_sdk_python/fortress.py index fe30b33..ee59d4e 100644 --- a/fortress_sdk_python/fortress.py +++ b/fortress_sdk_python/fortress.py @@ -30,8 +30,6 @@ def connect_database(self, database_id: str) -> Connection: return self.__connection_cache[database_id] response = self.__fortress.get_uri(database_id, "database") - if not response.success: - raise ValueError(response.message) connection = PostgresConnection( response.url, diff --git a/pyproject.toml b/pyproject.toml index 7240945..2165c71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fortress-sdk-python" -version = "0.1.9" +version = "0.1.10" description = "Fortress Platform Python API SDK" authors = ["Fortress "] readme = "README.md"