(a, b time.Duration)
| 371 | } |
| 372 | |
| 373 | func minDuration(a, b time.Duration) time.Duration { |
| 374 | if a < b { |
| 375 | return a |
| 376 | } |
| 377 | return b |
| 378 | } |
| 379 | |
| 380 | func shouldRetryDial(err error) bool { |
| 381 | if err == nil { |
no outgoing calls
no test coverage detected