Increase max deletions per chunk to 256

This commit is contained in:
Jon Chambers
2022-03-28 17:56:24 -04:00
committed by Jon Chambers
parent cf89e2215c
commit 418a869451

View File

@@ -26,7 +26,7 @@ public class AccountCleaner extends AccountDatabaseCrawlerListener {
private static final String DELETION_REASON_TAG_NAME = "reason";
@VisibleForTesting
static final int MAX_ACCOUNT_DELETIONS_PER_CHUNK = 40;
static final int MAX_ACCOUNT_DELETIONS_PER_CHUNK = 256;
private final AccountsManager accountsManager;