Skip to content

Commit

Permalink
🚧
Browse files Browse the repository at this point in the history
  • Loading branch information
ff137 committed Jun 13, 2024
1 parent 52aede4 commit e8e7100
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions aries_cloudagent/askar/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,9 @@ async def open_store(self, provision: bool = False) -> "AskarOpenStore":
raise ProfileNotFoundError(
f"Store '{self.name}' not found",
)
raise ProfileError("Error opening store") from err

raise ProfileError(
f"Error opening store, with config: {self.storage_config=}, {self.storage_type=}, {self.get_uri()=}"
) from err
return AskarOpenStore(self, provision, store)


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 = "aries_cloudagent"
version = "0.12.2rc0"
version = "0.12.2b0"
description = "Hyperledger Aries Cloud Agent Python (ACA-Py) is a foundation for building decentralized identity applications and services running in non-mobile environments. "
authors = ["Hyperledger Aries <aries@lists.hyperledger.org>"]
license = "Apache-2.0"
Expand Down

0 comments on commit e8e7100

Please sign in to comment.