Skip to content

Commit

Permalink
xds: Enable aggregate and logical dns clusters by default (#5380)
Browse files Browse the repository at this point in the history
  • Loading branch information
apolcyn committed May 25, 2022
1 parent c0e3573 commit a45cd25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/envconfig/xds.go
Expand Up @@ -77,7 +77,7 @@ var (
// environment variable
// "GRPC_XDS_EXPERIMENTAL_ENABLE_AGGREGATE_AND_LOGICAL_DNS_CLUSTER" to
// "true".
XDSAggregateAndDNS = strings.EqualFold(os.Getenv(aggregateAndDNSSupportEnv), "true")
XDSAggregateAndDNS = !strings.EqualFold(os.Getenv(aggregateAndDNSSupportEnv), "false")

// XDSRBAC indicates whether xDS configured RBAC HTTP Filter is enabled,
// which can be disabled by setting the environment variable
Expand Down

0 comments on commit a45cd25

Please sign in to comment.