mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-27 15:15:52 +00:00
proper handling of deleted objects
This commit is contained in:
@@ -812,8 +812,9 @@ PostgresBackend::doOnlineDelete(
|
||||
std::optional<ripple::uint256> cursor;
|
||||
while (true)
|
||||
{
|
||||
auto [objects, curCursor] = retryOnTimeout(
|
||||
[&]() { return fetchLedgerPage(cursor, minLedger, 256, yield); });
|
||||
auto [objects, curCursor] = retryOnTimeout([&]() {
|
||||
return fetchLedgerPage(cursor, minLedger, 256, false, yield);
|
||||
});
|
||||
BOOST_LOG_TRIVIAL(debug) << __func__ << " fetched a page";
|
||||
std::stringstream objectsBuffer;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user