Merge pull request #13348 from annando/retrial

New function for the number of retrials / Daily reload of hooks
This commit is contained in:
Hypolite Petovan 2023-08-15 12:37:58 +02:00 committed by GitHub
commit b5f33124be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View File

@ -1365,6 +1365,17 @@ class Worker
return $new_retrial;
}
/**
* Get the number of retrials for the current worker task
*
* @return integer
*/
public static function getRetrial(): int
{
$queue = DI::app()->getQueue();
return $queue['retrial'] ?? 0;
}
/**
* Defers the current worker entry
*

View File

@ -21,6 +21,7 @@
namespace Friendica\Worker;
use Friendica\Core\Addon;
use Friendica\Core\Hook;
use Friendica\Core\Logger;
use Friendica\Core\Worker;
@ -146,6 +147,8 @@ class Cron
// Update "blocked" status of servers
Worker::add(Worker::PRIORITY_LOW, 'UpdateBlockedServers');
Addon::reload();
DI::keyValue()->set('last_cron_daily', time());
}