Skip to content

Commit a183509

Browse files
hyperpolymathclaude
andcommitted
fix(adapter): add SSE port to PortInfo; version v0.1.0→v0.4.3
PortInfo was missing the SSE port 7703 from the /health status response. Version string corrected to match current release. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 80da46f commit a183509

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

adapter/v/src/main.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -966,6 +966,7 @@ struct PortInfo {
966966
rest int = 7700
967967
grpc int = 7701
968968
graphql int = 7702
969+
sse int = 7703
969970
}
970971

971972
struct MenuResponse {
@@ -1016,7 +1017,7 @@ struct EndpointInfo {
10161017

10171018
fn (app &BojApp) build_status() StatusResponse {
10181019
return StatusResponse{
1019-
version: 'BoJ Server v0.1.0'
1020+
version: 'BoJ Server v0.4.3'
10201021
total_cartridges: int(C.boj_catalogue_count())
10211022
ready_cartridges: int(C.boj_catalogue_count_ready())
10221023
mounted_cartridges: int(C.boj_catalogue_count_mounted())

0 commit comments

Comments
 (0)