Skip to content

Commit

Permalink
Merge pull request grpc#753 from iamqizhao/fix
Browse files Browse the repository at this point in the history
Add the missing address metadata
  • Loading branch information
menghanl authored Jul 7, 2016
2 parents daeb9cc + 5688542 commit 4f14d19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion balancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ func (rr *roundRobin) watchAddrUpdates() error {
defer rr.mu.Unlock()
for _, update := range updates {
addr := Address{
Addr: update.Addr,
Addr: update.Addr,
Metadata: update.Metadata,
}
switch update.Op {
case naming.Add:
Expand Down

0 comments on commit 4f14d19

Please sign in to comment.