| 33 | } |
| 34 | |
| 35 | Reference<Plan> ExtConnection::isolatedWrapOperationPlan(Reference<Plan> plan) { |
| 36 | return isolatedWrapOperationPlan(plan, options.timeoutMillies, options.retryLimit); |
| 37 | } |
| 38 | |
| 39 | Reference<Plan> ExtConnection::isolatedWrapOperationPlan(Reference<Plan> plan, int64_t timeout, int64_t retryLimit) { |
| 40 | return Reference<Plan>(new RetryPlan(plan, timeout, retryLimit, docLayer->database)); |
no outgoing calls
no test coverage detected