Skip to content

Commit 9b9b364

Browse files
authored
internal/envconfig: Set Custom LB Env Var to true by default (#6317)
1 parent e325737 commit 9b9b364

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

internal/envconfig/xds.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ var (
8989
// C2PResolverTestOnlyTrafficDirectorURI is the TD URI for testing.
9090
C2PResolverTestOnlyTrafficDirectorURI = os.Getenv("GRPC_TEST_ONLY_GOOGLE_C2P_RESOLVER_TRAFFIC_DIRECTOR_URI")
9191
// XDSCustomLBPolicy indicates whether Custom LB Policies are enabled, which
92-
// can be enabled by setting the environment variable
93-
// "GRPC_EXPERIMENTAL_XDS_CUSTOM_LB_CONFIG" to "true".
94-
XDSCustomLBPolicy = boolFromEnv("GRPC_EXPERIMENTAL_XDS_CUSTOM_LB_CONFIG", false)
92+
// can be disabled by setting the environment variable
93+
// "GRPC_EXPERIMENTAL_XDS_CUSTOM_LB_CONFIG" to "false".
94+
XDSCustomLBPolicy = boolFromEnv("GRPC_EXPERIMENTAL_XDS_CUSTOM_LB_CONFIG", true)
9595
)

0 commit comments

Comments
 (0)