From 6970c8b8b687a9be46ce73c707f7d7bf78ed0c65 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Thu, 1 Jan 2026 10:52:50 +0100 Subject: [PATCH] DOC: config: fix the length attribute name for stick tables of type binary / string The stick-table doc was reworked and moved in 3.2 with commit da67a89f3 ("DOC: config: move stick-tables and peers to their own section"), however the optional length attribute for binary/string types was mistakenly spelled "length" while it's "len". This must be backported to 3.2. --- doc/configuration.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/configuration.txt b/doc/configuration.txt index 7a3b19274..edb3c9695 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -30207,7 +30207,7 @@ Arguments: (mandatory ones first, then alphabetically sorted): which can represent a client identifier found in a request for instance. - * string [length ] + * string [len ] A table declared with "type string" will store substrings of up to characters. If the string provided by the pattern extractor is larger than , it will be truncated before @@ -30217,7 +30217,7 @@ Arguments: (mandatory ones first, then alphabetically sorted): limited to 32 characters. Increasing the length can have a non-negligible memory usage impact. - * binary [length ] + * binary [len ] A table declared with "type binary" will store binary blocks of bytes. If the block provided by the pattern extractor is larger than , it will be truncated before