| 441 | |
| 442 | |
| 443 | Future<Log::Position> LogReaderProcess::_catchup() |
| 444 | { |
| 445 | CHECK_READY(recovering); |
| 446 | |
| 447 | return log::catchup(quorum, recovering.get(), network) |
| 448 | .then([](uint64_t end) { return Log::Position(end); }); |
| 449 | } |
| 450 | |
| 451 | |
| 452 | Log::Position LogReaderProcess::position(uint64_t value) |