Fix docs valid_status_codes type
authorconorbroderick <cjayjayb@gmail.com>
Thu, 24 Aug 2017 10:28:41 +0000 (11:28 +0100)
committerconorbroderick <cjayjayb@gmail.com>
Thu, 24 Aug 2017 10:28:41 +0000 (11:28 +0100)
CONFIGURATION.md

index c036cdbf1cd73fed0f5e29183c4f81244007c021..86de0dbfe5ff11c926e3ff262d93fc10f71cd61e 100644 (file)
@@ -7,6 +7,7 @@ For non-list parameters the value is set to the specified default.
 Generic placeholders are defined as follows:
 
 * `<boolean>`: a boolean that can take the values `true` or `false`
+* `<int>`: a regular integer
 * `<duration>`: a duration matching the regular expression `[0-9]+(ms|[smhdwy])`
 * `<filename>`: a valid path in the current working directory
 * `<string>`: a regular string
@@ -36,7 +37,7 @@ The other placeholders are specified separately.
 ```yml
 
   # Accepted status codes for this probe. Defaults to 2xx.
-  [ valid_status_codes: <string>, ... | default = "2xx" ]
+  [ valid_status_codes: <int>, ... | default = 2xx ]
 
   # Accepted HTTP versions for this probe.
   [ valid_http_versions: <string>, ... ]