refactor(tvix/store/pathinfo/memory): drop {blob,directory}_service
These are not used anymore. Change-Id: I6c16b4d80ddaabcb75fec3ea3e32b923b7719485 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11620 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com> Autosubmit: flokli <flokli@flokli.de>
This commit is contained in:
parent
14766cfe1d
commit
03af6ab725
3 changed files with 6 additions and 26 deletions
|
|
@ -26,9 +26,8 @@ pub async fn make_grpc_path_info_service_client() -> super::BSDSPS {
|
|||
let blob_service = blob_service.clone();
|
||||
let directory_service = directory_service.clone();
|
||||
async move {
|
||||
let path_info_service: Arc<dyn PathInfoService> = Arc::from(
|
||||
MemoryPathInfoService::new(blob_service.clone(), directory_service.clone()),
|
||||
);
|
||||
let path_info_service: Arc<dyn PathInfoService> =
|
||||
Arc::from(MemoryPathInfoService::default());
|
||||
let nar_calculation_service =
|
||||
Box::new(SimpleRenderer::new(blob_service, directory_service))
|
||||
as Box<dyn NarCalculationService>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue