Compare commits

...

2 Commits

Author SHA1 Message Date
Easwar Swaminathan 87bf02ad24
Change version to 1.57.0 (#6448) 2023-07-26 10:22:46 -07:00
Doug Fawley 6b64be9784
resolver/weighted_round_robin: remove experimental suffix from name 2023-07-26 10:20:15 -07:00
3 changed files with 3 additions and 3 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"

View File

@ -19,4 +19,4 @@
package grpc
// Version is the current grpc version.
const Version = "1.57.0-dev"
const Version = "1.57.0"