We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
message_cron() calls message_get_purgeable_by_type() with the following:
message_cron()
message_get_purgeable_by_type()
$purge_messages += message_get_purgeable_by_type(...)
This is called multiple times, with $purge_limit being reduced as results are returned. However, the return if $purge_limit ever gets to zero is:
$purge_limit
function message_get_purgeable_by_type(&$purge_limit, $message_type_name, $purge_settings) { if ($purge_limit <= 0) { return; }
This causes a fatal error, killing the cron and preventing anything subsequent (including all queue processing) to never run.
The text was updated successfully, but these errors were encountered:
Issue Gizra#195 by andrewbelcher: Fix return of message_get_purgeable…
c527dfe
…_by_type()
This is a duplicate of #185.
Sorry, something went wrong.
No branches or pull requests
message_cron()
callsmessage_get_purgeable_by_type()
with the following:This is called multiple times, with
$purge_limit
being reduced as results are returned. However, the return if$purge_limit
ever gets to zero is:This causes a fatal error, killing the cron and preventing anything subsequent (including all queue processing) to never run.
The text was updated successfully, but these errors were encountered: