Skip to content

Commit

Permalink
feat: upgrade horaedbproto (#1408)
Browse files Browse the repository at this point in the history
## Rationale
Upgrade horaedbproto.

## Detailed Changes


## Test Plan
CI.
  • Loading branch information
chunshao90 authored Dec 29, 2023
1 parent b13f64f commit b10b0ab
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 19 deletions.
44 changes: 28 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ bytes = "1"
bytes_ext = { path = "components/bytes_ext" }
catalog = { path = "catalog" }
catalog_impls = { path = "catalog_impls" }
horaedbproto = "1.0.24"
horaedbproto = { git = "https://github.com/apache/incubator-horaedb-proto.git", rev = "92152841fc8a10729d6864d2873c62b7a334b2bd" }
codec = { path = "components/codec" }
chrono = "0.4"
clap = "3.0"
Expand Down
4 changes: 2 additions & 2 deletions meta_client/src/meta_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use async_trait::async_trait;
use generic_error::BoxError;
use horaedbproto::{
common::ResponseHeader,
meta_service::{self, ceresmeta_rpc_service_client::CeresmetaRpcServiceClient},
meta_service::{self, meta_rpc_service_client::MetaRpcServiceClient},
};
use logger::{debug, info};
use serde::{Deserialize, Serialize};
Expand All @@ -39,7 +39,7 @@ use crate::{
FailRouteTables, FailSendHeartbeat, MetaClient, MetaClientRef, MissingHeader, Result,
};

type MetaServiceGrpcClient = CeresmetaRpcServiceClient<tonic::transport::Channel>;
type MetaServiceGrpcClient = MetaRpcServiceClient<tonic::transport::Channel>;

#[derive(Debug, Deserialize, Clone, Serialize)]
#[serde(default)]
Expand Down

0 comments on commit b10b0ab

Please sign in to comment.