fix: nullable error field in ingest body schema
This commit is contained in:
parent
802055d24d
commit
97c08b1951
|
|
@ -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"] },
|
||||
|
|
|
|||
Loading…
Reference in New Issue