Revert "balancer: move Balancer and Picker to V2; delete legacy… (#3315)

This reverts commit 336cf8d76145dc5ebd517fd9c19e14c6822450b3.
This commit is contained in:
Doug Fawley
2020-01-13 13:12:55 -08:00
committed by GitHub
parent 20bce9a0c6
commit c35a580b0c
36 changed files with 2144 additions and 559 deletions

View File

@ -68,6 +68,8 @@ var (
errConnDrain = errors.New("grpc: the connection is drained")
// errConnClosing indicates that the connection is closing.
errConnClosing = errors.New("grpc: the connection is closing")
// errBalancerClosed indicates that the balancer is closed.
errBalancerClosed = errors.New("grpc: balancer is closed")
// invalidDefaultServiceConfigErrPrefix is used to prefix the json parsing error for the default
// service config.
invalidDefaultServiceConfigErrPrefix = "grpc: the provided default service config is invalid"