resolver/weighted_round_robin: remove experimental suffix from name (#6477)

This commit is contained in:
Doug Fawley 2023-07-26 08:55:14 -07:00 committed by GitHub
parent 2aa2615605
commit 41d1232703
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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{})

View File

@ -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"