| 252 | } |
| 253 | |
| 254 | export interface FailPoint { |
| 255 | configureFailPoint: 'failCommand' | 'failGetMoreAfterCursorCheckout' | 'maxTimeNeverTimeOut'; |
| 256 | mode: { activationProbability: number } | { times: number } | 'alwaysOn' | 'off'; |
| 257 | } |
| 258 | |
| 259 | export interface FailCommandFailPoint extends FailPoint { |
| 260 | configureFailPoint: 'failCommand'; |
nothing calls this directly
no outgoing calls
no test coverage detected