From 60a8ebefc271354a5c5aa0ad6b1476a89dfe4102 Mon Sep 17 00:00:00 2001 From: rprithyani Date: Mon, 23 Feb 2026 18:15:32 +0000 Subject: [PATCH 1/2] test --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 85cd4380..66228425 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # SubmitQueue +test ## Services From f0d81fb775a654c323c0d2e731eaa705f22e3c94 Mon Sep 17 00:00:00 2001 From: rprithyani Date: Mon, 23 Feb 2026 22:16:38 +0000 Subject: [PATCH 2/2] docs(example): add missing hostname field to PingResponse docs The PingResponse proto and controller include a hostname field (field 4), but the README example was missing it in both the proto definition and the JSON response example. Co-Authored-By: Claude Opus 4.6 --- README.md | 1 - example/README.md | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 66228425..85cd4380 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ # SubmitQueue -test ## Services diff --git a/example/README.md b/example/README.md index 9c7bf896..1bc65d19 100644 --- a/example/README.md +++ b/example/README.md @@ -200,6 +200,7 @@ message PingResponse { string message = 1; // The response message string service_name = 2; // The service name that handled the request int64 timestamp = 3; // Timestamp of when the ping was received + string hostname = 4; // The hostname of the server that handled the request } ``` @@ -213,7 +214,8 @@ Expected response: { "message": "echo: test", "service_name": "gateway", - "timestamp": 1705234567 + "timestamp": 1705234567, + "hostname": "gateway-host-01" } ```