From ab96cf12ec7ce135e03d6ea91d96213fa4cb02af Mon Sep 17 00:00:00 2001 From: Zhouyihai Ding Date: Thu, 10 Mar 2022 14:36:48 -0800 Subject: [PATCH] Add initial_fallback_timeout to the grpclb config (#105) --- grpc/service_config/service_config.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/grpc/service_config/service_config.proto b/grpc/service_config/service_config.proto index 16219e7a..263b4de8 100644 --- a/grpc/service_config/service_config.proto +++ b/grpc/service_config/service_config.proto @@ -295,6 +295,9 @@ message GrpcLbConfig { // Optional. If specified, overrides the name of the service to be sent to // the balancer. string service_name = 2; + // Optional. The timeout in seconds for receiving the server list from the LB + // server. Defaults to 10s. + google.protobuf.Duration initial_fallback_timeout = 3; } // Configuration for priority LB policy.