summaryrefslogtreecommitdiffstats
path: root/store/src/backend/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'store/src/backend/mod.rs')
-rw-r--r--store/src/backend/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/store/src/backend/mod.rs b/store/src/backend/mod.rs
index 10afe15a..d4f8ca3f 100644
--- a/store/src/backend/mod.rs
+++ b/store/src/backend/mod.rs
@@ -94,7 +94,7 @@ struct NodeServer {
impl NodeServer {
fn new(descriptor: ipc::Descriptor, handle: Handle) -> Result<Self> {
- let mut db_path = descriptor.home.clone();
+ let mut db_path = descriptor.context().home().to_path_buf();
db_path.push("keystore.sqlite");
let c = Connection::open(db_path)?;