From 88a37373e3cb5e1ab09e75dfb302b083168e6654 Mon Sep 17 00:00:00 2001 From: "update-envoy[bot]" <135279899+update-envoy[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 14:21:33 +0000 Subject: [PATCH] api: add TIMEOUT value to CSDS status enum (#37871) Signed-off-by: Mark D. Roth Mirrored from https://github.com/envoyproxy/envoy @ 2aaa544747e88cf80c17ef66b94b7c05ed198fa1 --- envoy/admin/v3/config_dump_shared.proto | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/envoy/admin/v3/config_dump_shared.proto b/envoy/admin/v3/config_dump_shared.proto index 977549a3a..b34e004d9 100644 --- a/envoy/admin/v3/config_dump_shared.proto +++ b/envoy/admin/v3/config_dump_shared.proto @@ -43,7 +43,10 @@ enum ClientResourceStatus { // Client received an error from the control plane. The attached config // dump is the most recent accepted one. If no config is accepted yet, // the attached config dump will be empty. - CLIENT_RECEIVED_ERROR = 5; + RECEIVED_ERROR = 5; + + // Client timed out waiting for the resource from the control plane. + TIMEOUT = 6; } message UpdateFailureState {