From 35c275f59f9afb13c15d4fa37e98b1121abf48ac Mon Sep 17 00:00:00 2001 From: "Mark D. Roth" Date: Fri, 3 Jan 2025 23:54:13 +0000 Subject: [PATCH] api: add TIMEOUT value to CSDS status enum Signed-off-by: Mark D. Roth --- api/envoy/admin/v3/config_dump_shared.proto | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/envoy/admin/v3/config_dump_shared.proto b/api/envoy/admin/v3/config_dump_shared.proto index 977549a3a0ae..b34e004d986c 100644 --- a/api/envoy/admin/v3/config_dump_shared.proto +++ b/api/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 {