conf: Clarify '[api] response_validation help' text

Make it extra clear this is only for API response bodies.

Change-Id: Id88c828aa7bcb1eff6dd149e8a92a19649ba4b0e
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This commit is contained in:
Stephen Finucane
2024-07-19 12:58:00 +01:00
parent 1a93703623
commit 9a04ed79a3

View File

@ -403,15 +403,16 @@ validation_opts = [
(
"error",
"Raise a HTTP 500 (Server Error) for responses that fail "
"schema validation",
"response body schema validation",
),
(
"warn",
"Log a warning for responses that fail schema validation",
"Log a warning for responses that fail response body schema "
"validation",
),
(
"ignore",
"Ignore schema validation failures",
"Ignore response body schema validation failures",
),
),
default="warn",