Skip to content

Commit

Permalink
ringhash: implement a no-op ExitIdle() method (#5614)
Browse files Browse the repository at this point in the history
  • Loading branch information
easwars committed Aug 30, 2022
1 parent fe59226 commit 1dd0256
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions xds/internal/balancer/ringhash/ringhash.go
Expand Up @@ -443,6 +443,11 @@ func (b *ringhashBalancer) regeneratePicker() {

func (b *ringhashBalancer) Close() {}

func (b *ringhashBalancer) ExitIdle() {
// ExitIdle implementation is a no-op because connections are either
// triggers from picks or from subConn state changes.
}

// connectivityStateEvaluator takes the connectivity states of multiple SubConns
// and returns one aggregated connectivity state.
//
Expand Down

0 comments on commit 1dd0256

Please sign in to comment.