fix(gateway): remove hello-ok host and commit fields

This commit is contained in:
Peter Steinberger
2026-02-22 10:17:29 +01:00
parent 6c2e999776
commit 2c6dd84718
2 changed files with 0 additions and 4 deletions

View File

@@ -74,8 +74,6 @@ export const HelloOkSchema = Type.Object(
server: Type.Object(
{
version: NonEmptyString,
commit: Type.Optional(NonEmptyString),
host: Type.Optional(NonEmptyString),
connId: NonEmptyString,
},
{ additionalProperties: false },

View File

@@ -824,8 +824,6 @@ export function attachGatewayWsMessageHandler(params: {
protocol: PROTOCOL_VERSION,
server: {
version: resolveRuntimeServiceVersion(process.env, "dev"),
commit: process.env.GIT_COMMIT,
host: os.hostname(),
connId,
},
features: { methods: gatewayMethods, events },