inFlight returns the amount of in-flight requests of the breaker
()
| 79 | |
| 80 | // inFlight returns the amount of in-flight requests of the breaker |
| 81 | func (a *apiActivator) inFlight() int64 { |
| 82 | return a.breaker.InFlight() |
| 83 | } |
| 84 | |
| 85 | type readinessTracker struct { |
| 86 | mux sync.RWMutex |