package envconfig

import "google.golang.org/grpc/internal/envconfig"

Package envconfig contains grpc settings configured by environment variables.

Index

Variables

var (
	// Retry is set if retry is explicitly enabled via "GRPC_GO_RETRY=on".
	Retry = strings.EqualFold(os.Getenv(retryStr), "on")
	// RequireHandshake is set based upon the GRPC_GO_REQUIRE_HANDSHAKE
	// environment variable.
	//
	// Will be removed after the 1.18 release.
	RequireHandshake = RequireHandshakeOn
)

Types

type RequireHandshakeSetting

type RequireHandshakeSetting int

RequireHandshakeSetting describes the settings for handshaking.

const (
	// RequireHandshakeOn indicates to wait for handshake before considering a
	// connection ready/successful.
	RequireHandshakeOn RequireHandshakeSetting = iota
	// RequireHandshakeOff indicates to not wait for handshake before
	// considering a connection ready/successful.
	RequireHandshakeOff
)

Source Files

envconfig.go

Version
v1.21.1
Published
Jun 4, 2019
Platform
linux/amd64
Imports
2 packages
Last checked
1 minute ago

Tools for package owners.