Avoid a blocked workerqueue due to removed users

This commit is contained in:
Michael 2018-11-12 05:03:12 +00:00
parent 2d88994ed9
commit 1e873a2815
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class RemoveUser {
do {
$items = Item::select(['id'], $condition, ['limit' => 100]);
while ($item = Item::fetch($items)) {
Item::deleteById($item['id'], PRIORITY_LOW);
Item::deleteById($item['id'], PRIORITY_NEGLIGIBLE);
}
DBA::close($items);
} while (Item::exists($condition));