Releases: daneren2005/php-resque
v1.2.47
v1.2.46
Fixed resque/scheduler not getting added to vendor/bin correctly
v1.2.45
Add plugin to auto retry with exponential backoff. Add the following static variable to your worker class to turn it on:
public static $resquePlugins = array(
'Resque_ExponentialRetry'
);
v1.2.44
Added support for scheduling jobs in the future
v1.2.43
Track which worker a job is working from so we can restart stuck jobs from a single job id
v1.2.42
Fix "dynamic property Resque_Redis::$driver is deprecated" warning in php 8.2
1.2.41
Convert strftime to date due to php 8.1 depreciation
1.2.40
Log signal child process received/shutdown from
1.2.39
Add an explicit pcntl_wifexited check
Looks like exit code is only valid if wifexited returns true: https://stackoverflow.com/questions/742413/return-code-when-os-kills-your-process
1.2.38
Add more logging to try to debug random jobs just stopping midway through and not resuming. Looking through my logs it just stops a child worker randomly without any logs saying it was done, and the parent marks it as done: Updating job status as done
.