diff options
author | Florian Klink <flokli@flokli.de> | 2023-06-17T10·20+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-06-19T14·29+0000 |
commit | ad687ccaf49f6cfd3b23083ddd543a840c2212ae (patch) | |
tree | ce00017af6c5345bb2ccfe1404dd1b2e85f81e1c /tvix/store/src/pathinfoservice/from_addr.rs | |
parent | b10f008b03f44192cb37cbd6cf1e55b6d03b80fa (diff) |
chore(tvix/store/pathinfosvc): clippy r/6333
Change-Id: Ied4bed08e989791f832922da8776d2104035e28a Reviewed-on: https://cl.tvl.fyi/c/depot/+/8812 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/store/src/pathinfoservice/from_addr.rs')
-rw-r--r-- | tvix/store/src/pathinfoservice/from_addr.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tvix/store/src/pathinfoservice/from_addr.rs b/tvix/store/src/pathinfoservice/from_addr.rs index 2f712f451442..36b30aecdcf5 100644 --- a/tvix/store/src/pathinfoservice/from_addr.rs +++ b/tvix/store/src/pathinfoservice/from_addr.rs @@ -27,9 +27,8 @@ pub fn from_addr( blob_service: Arc<dyn BlobService>, directory_service: Arc<dyn DirectoryService>, ) -> Result<Arc<dyn PathInfoService>, crate::Error> { - let url = Url::parse(uri).map_err(|e| { - crate::Error::StorageError(format!("unable to parse url: {}", e.to_string())) - })?; + let url = Url::parse(uri) + .map_err(|e| crate::Error::StorageError(format!("unable to parse url: {}", e)))?; Ok(if url.scheme() == "memory" { Arc::new(MemoryPathInfoService::from_url( |