fix: nullable error field in ingest body schema

This commit is contained in:
M1 2026-03-16 12:11:43 +04:00
parent 802055d24d
commit 97c08b1951
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ export const checks = new Elysia()
status_code: t.Optional(t.Number()),
latency_ms: t.Optional(t.Number()),
up: t.Boolean(),
error: t.Optional(t.String()),
error: t.Optional(t.Nullable(t.String())),
meta: t.Optional(t.Any()),
}),
detail: { summary: "Ingest result (monitor runner)", tags: ["internal"] },