We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f4da55 commit 66628a8Copy full SHA for 66628a8
server/src/handlers/http/about.rs
@@ -40,6 +40,7 @@ pub async fn about() -> Json<serde_json::Value> {
40
let deployment_id = meta.deployment_id.to_string();
41
let mode = CONFIG.mode_string();
42
let staging = CONFIG.staging_dir();
43
+ let grpc_port = CONFIG.parseable.grpc_port;
44
45
let store = CONFIG.storage().get_endpoint();
46
let is_llm_active = &CONFIG.parseable.open_ai_key.is_some();
@@ -58,6 +59,7 @@ pub async fn about() -> Json<serde_json::Value> {
58
59
"license": "AGPL-3.0-only",
60
"mode": mode,
61
"staging": staging,
62
+ "grpcPort": grpc_port,
63
"store": store
64
}))
65
}
0 commit comments