New function for the number of retrials / Daily reload of hooks

This commit is contained in:
Michael 2023-08-15 02:13:50 +00:00
parent 1b7075aebb
commit 7faba0de5e
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
*