aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-12-11 18:17:08 +0100
committerAlex Auvolat <alex@adnab.me>2022-12-11 18:17:08 +0100
commit533afcf4e13022c46fd21ec51ca2a9969692ef4c (patch)
treef7c402abdea23f2fc597e25b763939c700ef9970
parent5ea5fd2130ee16a2030f6f74cd1a8b641b1c2487 (diff)
downloadgarage-admin-health-api.tar.gz
garage-admin-health-api.zip
-rw-r--r--src/api/admin/cluster.rs9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/api/admin/cluster.rs b/src/api/admin/cluster.rs
index f4bf8b7b..182a4f6f 100644
--- a/src/api/admin/cluster.rs
+++ b/src/api/admin/cluster.rs
@@ -9,7 +9,6 @@ use garage_util::crdt::*;
use garage_util::data::*;
use garage_rpc::layout::*;
-use garage_rpc::system::ClusterHealthStatus;
use garage_model::garage::Garage;
@@ -46,13 +45,7 @@ pub async fn handle_get_cluster_status(garage: &Arc<Garage>) -> Result<Response<
pub async fn handle_get_cluster_health(garage: &Arc<Garage>) -> Result<Response<Body>, Error> {
let health = garage.system.health();
-
- let resp_json =
- serde_json::to_string_pretty(&health).map_err(garage_util::error::Error::from)?;
- Ok(Response::builder()
- .status(StatusCode::OK)
- .header(http::header::CONTENT_TYPE, "application/json")
- .body(Body::from(resp_json))?)
+ Ok(json_ok_response(&health)?)
}
pub async fn handle_connect_cluster_nodes(