Skip to content

Commit

Permalink
Merge branch 'master' into fix_check_peer
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyxuqqi committed Feb 2, 2024
2 parents 8abdd3b + 8b7f647 commit 5df0f68
Show file tree
Hide file tree
Showing 50 changed files with 1,825 additions and 839 deletions.
22 changes: 22 additions & 0 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ fxhash = "0.2.1"
getset = "0.1"
grpcio = { workspace = true }
grpcio-health = { workspace = true }
health_controller = { workspace = true }
hex = "0.4"
http = "0"
hybrid_engine = { workspace = true }
Expand Down Expand Up @@ -257,6 +258,7 @@ members = [
"components/error_code",
"components/external_storage",
"components/file_system",
"components/health_controller",
"components/into_other",
"components/keys",
"components/log_wrappers",
Expand Down Expand Up @@ -341,6 +343,7 @@ external_storage = { path = "components/external_storage" }
file_system = { path = "components/file_system" }
crypto = { path = "components/crypto" }
gcp = { path = "components/cloud/gcp" }
health_controller = { path = "components/health_controller" }
into_other = { path = "components/into_other" }
keys = { path = "components/keys" }
log_wrappers = { path = "components/log_wrappers" }
Expand Down
17 changes: 17 additions & 0 deletions components/health_controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "health_controller"
version = "0.1.0"
license = "Apache-2.0"
edition = "2021"
publish = false

[dependencies]
grpcio-health = { workspace = true }
kvproto = { workspace = true }
ordered-float = "2.6"
parking_lot = "0.12.1"
prometheus = { version = "0.13", features = ["nightly"] }
prometheus-static-metric = "0.5"
slog = { workspace = true }
slog-global = { workspace = true }
tikv_util = { workspace = true }

0 comments on commit 5df0f68

Please sign in to comment.