func()

in readers/apiserver/watchlist/watchlist.go [202:213]


func (r *Reader) clientSwitchRetry() {
	if r.testClientSwitchRetry != nil {
		r.testClientSwitchRetry()
		return
	}

	boff, _ := exponential.New() // nolint:errcheck // Can't error on default
	boff.Retry(                  // nolint:errcheck // We don't care about the error here.
		context.Background(),
		r.clientSwitch,
	)
}