From e38444216aa5cfcb74475c0163874e120fb41ada Mon Sep 17 00:00:00 2001 From: "update-envoy[bot]" <135279899+update-envoy[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 13:36:08 +0000 Subject: [PATCH] docs: added more info for stateful_session filter params (#37345) Signed-off-by: Rohit Agrawal Mirrored from https://github.com/envoyproxy/envoy @ 416524cc4fbd20fe41245abf51f6f886149a290d --- .../http/stateful_session/v3/stateful_session.proto | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/envoy/extensions/filters/http/stateful_session/v3/stateful_session.proto b/envoy/extensions/filters/http/stateful_session/v3/stateful_session.proto index aa07083f..5cef3fc7 100644 --- a/envoy/extensions/filters/http/stateful_session/v3/stateful_session.proto +++ b/envoy/extensions/filters/http/stateful_session/v3/stateful_session.proto @@ -18,14 +18,16 @@ option (udpa.annotations.file_status).package_version_status = ACTIVE; // [#extension: envoy.filters.http.stateful_session] message StatefulSession { - // Specific implementation of session state. This session state will be used to store and - // get address of the upstream host to which the session is assigned. + // Specifies the implementation of session state. This session state is used to store and retrieve the address of the + // upstream host assigned to the session. // // [#extension-category: envoy.http.stateful_session] config.core.v3.TypedExtensionConfig session_state = 1; - // If set to True, the HTTP request must be routed to the requested destination. - // If the requested destination is not available, Envoy returns 503. Defaults to False. + // Determines whether the HTTP request must be strictly routed to the requested destination. When set to ``true``, + // if the requested destination is unavailable, Envoy will return a 503 status code. The default value is ``false``, + // which allows Envoy to fall back to its load balancing mechanism. In this case, if the requested destination is not + // found, the request will be routed according to the load balancing algorithm. bool strict = 2; }