Skip to content

Commit

Permalink
fix rust-analyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
datelier committed Nov 5, 2024
1 parent 25c2220 commit e65844d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rust/bin/agent/src/handler/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl update_server::Update for super::Agent {
#[doc = " A method to update timestamp indexed vectors in a single request.\n"]
async fn update_timestamp(
&self,
request: tonic::Request<update::TimestampRequest>,
_request: tonic::Request<update::TimestampRequest>,
) -> std::result::Result<tonic::Response<object::Location>, tonic::Status> {
todo!()
}
Expand Down
6 changes: 3 additions & 3 deletions rust/bin/meta/src/handler/meta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ use proto::{meta::v1::meta_server, payload::v1::{meta, Empty}};
impl meta_server::Meta for super::Meta {
async fn get(
&self,
request: tonic::Request<meta::Key>,
_request: tonic::Request<meta::Key>,
) -> std::result::Result<tonic::Response<meta::Value>, tonic::Status> {
todo!()
}
async fn set(
&self,
request: tonic::Request<meta::KeyValue>,
_request: tonic::Request<meta::KeyValue>,
) -> std::result::Result<tonic::Response<Empty>, tonic::Status> {
todo!()
}

async fn delete(
&self,
request: tonic::Request<meta::Key>,
_request: tonic::Request<meta::Key>,
) -> std::result::Result<tonic::Response<Empty>, tonic::Status> {
todo!()
}
Expand Down

0 comments on commit e65844d

Please sign in to comment.