diff options
author | Florian Klink <flokli@flokli.de> | 2023-12-11T20·11+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-12-11T22·46+0000 |
commit | ccaf10b4a6f7768294e41fcb6fbcd768a1e1c143 (patch) | |
tree | 64e7ee1f57474e04d8854ed85f5255a6f8af99ea /tvix/castore/src/directoryservice/sled.rs | |
parent | 9748543f1c3edd88e8b05f6a772d6e9be18a7be9 (diff) |
refactor(tvix/*store/sled): make ::new() more generic r/7159
We don't really require the Path to be a PathBuf, we don't even require it to be a Path, we only need it to be AsRef<Path>>. This removes some conversion in the from_addr cases, which can just reuse `url.path()` (a `&str`). Change-Id: I38d536dbaf0b44421e41f211a9ad2b13605179e9 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10258 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/castore/src/directoryservice/sled.rs')
-rw-r--r-- | tvix/castore/src/directoryservice/sled.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/castore/src/directoryservice/sled.rs b/tvix/castore/src/directoryservice/sled.rs index 50e58e7e768c..9e6749a753c2 100644 --- a/tvix/castore/src/directoryservice/sled.rs +++ b/tvix/castore/src/directoryservice/sled.rs @@ -3,7 +3,7 @@ use crate::proto::Directory; use crate::{proto, B3Digest, Error}; use futures::Stream; use prost::Message; -use std::path::PathBuf; +use std::path::Path; use std::pin::Pin; use tonic::async_trait; use tracing::{instrument, warn}; @@ -17,7 +17,7 @@ pub struct SledDirectoryService { } impl SledDirectoryService { - pub fn new(p: PathBuf) -> Result<Self, sled::Error> { + pub fn new<P: AsRef<Path>>(p: P) -> Result<Self, sled::Error> { let config = sled::Config::default() .use_compression(false) // is a required parameter .path(p); |