Browse Source

clientv3: implement new grpc.Balancer interface

Gyu-Ho Lee 9 years ago
parent
commit
4a07bbec59
1 changed files with 1 additions and 1 deletions
  1. 1 1
      clientv3/balancer.go

+ 1 - 1
clientv3/balancer.go

@@ -72,7 +72,7 @@ func newSimpleBalancer(eps []string) *simpleBalancer {
 	return sb
 }
 
-func (b *simpleBalancer) Start(target string) error { return nil }
+func (b *simpleBalancer) Start(target string, config grpc.BalancerConfig) error { return nil }
 
 func (b *simpleBalancer) ConnectNotify() <-chan struct{} {
 	b.mu.Lock()