]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
DOC: config: Reorder params for 'tcp-check expect' directive
authorChristopher Faulet <cfaulet@haproxy.com>
Fri, 20 Mar 2026 10:36:44 +0000 (11:36 +0100)
committerChristopher Faulet <cfaulet@haproxy.com>
Mon, 23 Mar 2026 13:02:43 +0000 (14:02 +0100)
Order of parameters for the 'tcp-check expect' directive is changed to be
the same than 'http-check expect'.

doc/configuration.txt

index c9bfd976ea311633023325b72d71367ab6cb903f..c50240f8159ec8e5ab8e3542cf0d68a89bc4a9c1 100644 (file)
@@ -13701,13 +13701,6 @@ tcp-check expect [min-recv <int>] [comment <msg>]
               does not match, the check will wait for more data. If set to 0,
               the evaluation result is always conclusive.
 
-    <match>   is a keyword indicating how to look for a specific pattern in the
-              response. The keyword may be one of "string", "rstring", "binary" or
-              "rbinary".
-              The keyword may be preceded by an exclamation mark ("!") to negate
-              the match. Spaces are allowed between the exclamation mark and the
-              keyword. See below for more details on the supported keywords.
-
     ok-status <st>     is optional and can be used to set the check status if
                        the expect rule is successfully evaluated and if it is
                        the last rule in the tcp-check ruleset. "L7OK", "L7OKC",
@@ -13755,6 +13748,13 @@ tcp-check expect [min-recv <int>] [comment <msg>]
                        standard HAProxy expression formed by a sample-fetch
                        followed by some converters.
 
+    <match>   is a keyword indicating how to look for a specific pattern in the
+              response. The keyword may be one of "string", "rstring", "binary" or
+              "rbinary".
+              The keyword may be preceded by an exclamation mark ("!") to negate
+              the match. Spaces are allowed between the exclamation mark and the
+              keyword. See below for more details on the supported keywords.
+
     <pattern> is the pattern to look for. It may be a string or a regular
               expression. If the pattern contains spaces, they must be escaped
               with the usual backslash ('\').