You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the xDS fallback design A71, support for the GRPC_EXPERIMENTAL_XDS_FALLBACK environment variable needs to be added:
If this variable is unset or is false, only one xDS server will be read from the bootstrap file.
It might be tricky for us to read a single server from the bootstrap file since we currently unmarshal that field into an array of JSON objects, but we could change the implementation to ignore everything but the first server if this env var is unset of false. In fact, this was the behavior before a bunch of bootstrap related changes were made to support xDS fallback.
The text was updated successfully, but these errors were encountered:
According to the xDS fallback design A71, support for the
GRPC_EXPERIMENTAL_XDS_FALLBACK
environment variable needs to be added:It might be tricky for us to read a single server from the bootstrap file since we currently unmarshal that field into an array of JSON objects, but we could change the implementation to ignore everything but the first server if this env var is unset of false. In fact, this was the behavior before a bunch of bootstrap related changes were made to support xDS fallback.
The text was updated successfully, but these errors were encountered: