| 389 | } |
| 390 | |
| 391 | void |
| 392 | markParentDown(ParentResult *result, unsigned int fail_threshold, unsigned int retry_time) |
| 393 | { |
| 394 | if (!result->is_api_result()) { |
| 395 | ink_release_assert(result->rec->selection_strategy != nullptr); |
| 396 | result->rec->selection_strategy->markParentDown(result, fail_threshold, retry_time); |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | void |
| 401 | markParentUp(ParentResult *result) |
nothing calls this directly
no test coverage detected