Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions balancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,12 @@ func (b *ringBalancer) Close() {
// No internal state to clean up and no need to call RemoveSubConn.
}

func (b *ringBalancer) ExitIdle() {
// No-op as we already reconnect SubConns on demand when they report
// connectivity.Idle in UpdateSubConnState. This is here to satisfy
// the balancer.Balancer interface >v1.74.0
}

type picker struct {
hashring *hashring.Ring
spread uint8
Expand Down