]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
DOC: config: fix the length attribute name for stick tables of type binary / string
authorWilly Tarreau <w@1wt.eu>
Thu, 1 Jan 2026 09:52:50 +0000 (10:52 +0100)
committerWilly Tarreau <w@1wt.eu>
Thu, 1 Jan 2026 09:52:50 +0000 (10:52 +0100)
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

index 7a3b19274b018e46efa679300fea5041c7c1c96f..edb3c9695d1542e3e4ef2aa743644654673e3f49 100644 (file)
@@ -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 <len>]
+     * string [len <len>]
                  A table declared with "type string" will store substrings of
                  up to <len> characters. If the string provided by the pattern
                  extractor is larger than <len>, 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 <len>]
+     * binary [len <len>]
                  A table declared with "type binary" will store binary blocks
                  of <len> bytes. If the block provided by the pattern
                  extractor is larger than <len>, it will be truncated before