Skip to content

Commit

Permalink
Fix deletedLedgers count (#4026)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonHxy authored Jul 21, 2023
1 parent 58765b0 commit 3bf08fe
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ public void removeDeletedLedgers() throws IOException {
for (Long ledgerId : pendingDeletedLedgers) {
key.set(ledgerId);
ledgersDb.delete(key.array);
++deletedLedgers;
}

if (log.isDebugEnabled()) {
Expand Down

0 comments on commit 3bf08fe

Please sign in to comment.