diff options
| author | Paul Buetow <paul@buetow.org> | 2021-11-03 09:22:49 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2021-11-03 09:22:49 +0200 |
| commit | 426196c23fa4be59ad024f5d6891b1de047581f9 (patch) | |
| tree | 9024ac46e2fcd9ad1dd6c9ba14286e1b1c514726 /samples | |
| parent | 69b4659b2e644506476a7285970121b3fc98c15b (diff) | |
Add integration test for long line splitting - Also fixed a bug regarding this along the way
Diffstat (limited to 'samples')
| -rw-r--r-- | samples/dtail.json.sample | 1 | ||||
| -rwxr-xr-x | samples/dtail.schema.json | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/samples/dtail.json.sample b/samples/dtail.json.sample index 20a1359..26eb8a1 100644 --- a/samples/dtail.json.sample +++ b/samples/dtail.json.sample @@ -96,6 +96,7 @@ "MaxConcurrentCats": 2, "MaxConcurrentTails": 50, "MaxConnections": 50, + "MaxLineLength": 1048576, "Permissions": { "Default": [ "readfiles:^/.*$" diff --git a/samples/dtail.schema.json b/samples/dtail.schema.json index bf07525..7551449 100755 --- a/samples/dtail.schema.json +++ b/samples/dtail.schema.json @@ -358,6 +358,11 @@ "minimum": 1, "maximum": 100 }, + "MaxLineLength": { + "type": "integer", + "minimum": 1024, + "maximum": 10240000 + }, "Permissions": { "type": "object", "properties": {} |
