From 7cfbd0325a52374a84a2e2828ff363d4b89a42c2 Mon Sep 17 00:00:00 2001 From: Doug Fawley Date: Wed, 26 Jul 2023 08:55:14 -0700 Subject: [PATCH] resolver/weighted_round_robin: remove experimental suffix from name (#6477) --- balancer/weightedroundrobin/balancer.go | 2 +- test/xds/xds_client_custom_lb_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/balancer/weightedroundrobin/balancer.go b/balancer/weightedroundrobin/balancer.go index a164d1bedd7e..797b9aa0a960 100644 --- a/balancer/weightedroundrobin/balancer.go +++ b/balancer/weightedroundrobin/balancer.go @@ -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{}) diff --git a/test/xds/xds_client_custom_lb_test.go b/test/xds/xds_client_custom_lb_test.go index 4624c252b0bb..87bd437785a6 100644 --- a/test/xds/xds_client_custom_lb_test.go +++ b/test/xds/xds_client_custom_lb_test.go @@ -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"