feat(tvix/store): add grpc healthcheck service to daemon

Change-Id: Ib95fc9352a45d54f9a16c8841c7e8f7cbeeaee8c
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12019
Tested-by: BuildkiteCI
Reviewed-by: flokli <flokli@flokli.de>
Autosubmit: yuka <yuka@yuka.dev>
This commit is contained in:
Yureka 2024-07-22 15:41:32 +02:00 committed by clbot
parent 39c8b6dece
commit 2547ff2cf6
4 changed files with 71 additions and 0 deletions

14
tvix/Cargo.lock generated
View file

@ -4526,6 +4526,19 @@ dependencies = [
"syn 2.0.48",
]
[[package]]
name = "tonic-health"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1e10e6a96ee08b6ce443487d4368442d328d0e746f3681f81127f7dc41b4955"
dependencies = [
"async-stream",
"prost 0.13.1",
"tokio",
"tokio-stream",
"tonic 0.12.1",
]
[[package]]
name = "tonic-reflection"
version = "0.12.1"
@ -5001,6 +5014,7 @@ dependencies = [
"toml 0.8.15",
"tonic 0.12.1",
"tonic-build 0.12.1",
"tonic-health",
"tonic-reflection",
"tower",
"tower-http",