mirror of https://github.com/grpc/grpc-go.git
resolver/weighted_round_robin: remove experimental suffix from name (#6477)
This commit is contained in:
parent
2aa2615605
commit
41d1232703
|
@ -43,7 +43,7 @@ import (
|
|||
)
|
||||
|
||||
// Name is the name of the weighted round robin balancer.
|
||||
const Name = "weighted_round_robin_experimental"
|
||||
const Name = "weighted_round_robin"
|
||||
|
||||
func init() {
|
||||
balancer.Register(bb{})
|
||||
|
|
|
@ -25,7 +25,7 @@ import (
|
|||
"time"
|
||||
|
||||
"google.golang.org/grpc"
|
||||
_ "google.golang.org/grpc/balancer/weightedroundrobin" // To register weighted_round_robin_experimental.
|
||||
_ "google.golang.org/grpc/balancer/weightedroundrobin" // To register weighted_round_robin
|
||||
"google.golang.org/grpc/credentials/insecure"
|
||||
"google.golang.org/grpc/internal/envconfig"
|
||||
"google.golang.org/grpc/internal/stubserver"
|
||||
|
|
Loading…
Reference in New Issue