Skip to content

Commit 3ee0dbb

Browse files
Merge pull request openwallet-foundation#1878 from dbluhm/fix/askar-memory
fix: unable to use askar with in memory db
2 parents eeebb9d + d7726ce commit 3ee0dbb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aries_cloudagent/askar/store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ async def open_store(self, provision: bool = False) -> "AskarOpenStore":
146146
"""
147147

148148
try:
149-
if provision:
149+
if provision or self.in_memory:
150150
store = await Store.provision(
151151
self.get_uri(create=True),
152152
self.key_derivation_method,

0 commit comments

Comments
 (0)