Skip to content

Commit

Permalink
fix typo (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpprian authored Aug 9, 2024
1 parent 1f519f2 commit 7da819e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ async fn healthcheckgrpc(State(state): State<AppState>) -> (StatusCode, &'static
if state.grpc_server.connected.load(Ordering::Relaxed) {
(StatusCode::OK, "Alive")
} else {
(StatusCode::SERVICE_UNAVAILABLE, "Not connected to store")
(StatusCode::SERVICE_UNAVAILABLE, "Not connected to core")
}
}

Expand Down

0 comments on commit 7da819e

Please sign in to comment.