Option lets users specify custom verifications.
| 29 | |
| 30 | // Option lets users specify custom verifications. |
| 31 | type Option interface { |
| 32 | apply(*opts) |
| 33 | } |
| 34 | |
| 35 | // We retry up to 20 times if we can't find the goroutine that |
| 36 | // we are looking for. In between each attempt, we will sleep for |