Lower priority for removing users

This commit is contained in:
Michael 2019-02-03 23:55:46 +00:00
parent 5e2cbce9b6
commit 633d04049b
1 changed files with 1 additions and 1 deletions

View File

@ -891,7 +891,7 @@ class User
Worker::add(PRIORITY_LOW, 'Directory', $self['url']);
// Remove the user relevant data
Worker::add(PRIORITY_LOW, 'RemoveUser', $uid);
Worker::add(PRIORITY_NEGLIGIBLE, 'RemoveUser', $uid);
return true;
}