We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bba5d5c commit f039822Copy full SHA for f039822
1 file changed
internal/envconfig/envconfig.go
@@ -33,10 +33,6 @@ var (
33
// "GRPC_RING_HASH_CAP". This does not override the default bounds
34
// checking which NACKs configs specifying ring sizes > 8*1024*1024 (~8M).
35
RingHashCap = uint64FromEnv("GRPC_RING_HASH_CAP", 4096, 1, 8*1024*1024)
36
- // LeastRequestLB is set if we should support the least_request_experimental
37
- // LB policy, which can be enabled by setting the environment variable
38
- // "GRPC_EXPERIMENTAL_ENABLE_LEAST_REQUEST" to "true".
39
- LeastRequestLB = boolFromEnv("GRPC_EXPERIMENTAL_ENABLE_LEAST_REQUEST", false)
40
// ALTSMaxConcurrentHandshakes is the maximum number of concurrent ALTS
41
// handshakes that can be performed.
42
ALTSMaxConcurrentHandshakes = uint64FromEnv("GRPC_ALTS_MAX_CONCURRENT_HANDSHAKES", 100, 1, 100)
0 commit comments