From e7faf4811041c926c53be04c5884005fa460f134 Mon Sep 17 00:00:00 2001 From: Arne Luenser Date: Tue, 9 Jan 2024 15:42:21 +0100 Subject: [PATCH] fix: config schema (generated) (#1502) --- .schema/config.schema.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.schema/config.schema.json b/.schema/config.schema.json index c82c276df..dd354a7c9 100644 --- a/.schema/config.schema.json +++ b/.schema/config.schema.json @@ -312,10 +312,10 @@ "enum": ["cpu", "mem", ""] }, "log": { - "$ref": "https://raw.githubusercontent.com/ory/x/v0.0.543/logrusx/config.schema.json" + "$ref": "https://raw.githubusercontent.com/ory/x/v0.0.607/logrusx/config.schema.json" }, "tracing": { - "$ref": "https://raw.githubusercontent.com/ory/x/v0.0.543/tracing/config.schema.json" + "$ref": "https://raw.githubusercontent.com/ory/x/v0.0.607/otelx/config.schema.json" }, "namespaces": { "description": "Namespace configuration or it's location.", @@ -372,6 +372,14 @@ "description": "The global maximum depth on all read operations. Note that this does not affect how deeply nested the tuples can be. This value can be decreased for a request by a value specified on the request, only if the request-specific value is greater than 1 and less than the global maximum depth.", "minimum": 1, "maximum": 65535 + }, + "max_read_width": { + "type": "integer", + "default": 100, + "title": "Global maximum read width", + "description": "The global maximum width on all read operations. Note that this does not affect how deeply nested the tuples can be. This value can be decreased for a request by a value specified on the request, only if the request-specific value is greater than 1 and less than the global maximum width.", + "minimum": 1, + "maximum": 65535 } }, "additionalProperties": false