refactor(tvix/store/pathinfosvc): drop ByWhat, use digest directly
We currently only support querying by the output hash digest. This makes the interface a bit simpler. Change-Id: I80b285373f1923e85cb0e404c4b15d51a7f259ef Reviewed-on: https://cl.tvl.fyi/c/depot/+/8570 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
parent
71c29d0f4c
commit
e815b680c0
5 changed files with 46 additions and 72 deletions
|
|
@ -28,10 +28,7 @@ impl GRPCPathInfoService {
|
|||
}
|
||||
|
||||
impl PathInfoService for GRPCPathInfoService {
|
||||
fn get(
|
||||
&self,
|
||||
by_what: proto::get_path_info_request::ByWhat,
|
||||
) -> Result<Option<proto::PathInfo>, crate::Error> {
|
||||
fn get(&self, digest: [u8; 20]) -> Result<Option<proto::PathInfo>, crate::Error> {
|
||||
// Get a new handle to the gRPC client.
|
||||
let mut grpc_client = self.grpc_client.clone();
|
||||
|
||||
|
|
@ -39,7 +36,9 @@ impl PathInfoService for GRPCPathInfoService {
|
|||
self.tokio_handle.spawn(async move {
|
||||
let path_info = grpc_client
|
||||
.get(proto::GetPathInfoRequest {
|
||||
by_what: Some(by_what),
|
||||
by_what: Some(proto::get_path_info_request::ByWhat::ByOutputHash(
|
||||
digest.to_vec(),
|
||||
)),
|
||||
})
|
||||
.await?
|
||||
.into_inner();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue