Skip to content

Releases: daneren2005/php-resque

v1.2.47

16 Oct 15:52
Compare
Choose a tag to compare

fix: retry deleting working status in case redis fails

v1.2.46

22 Sep 18:50
Compare
Choose a tag to compare

Fixed resque/scheduler not getting added to vendor/bin correctly

v1.2.45

21 Sep 21:35
Compare
Choose a tag to compare

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

28 Aug 23:18
Compare
Choose a tag to compare

Added support for scheduling jobs in the future

v1.2.43

14 Apr 21:00
Compare
Choose a tag to compare

Track which worker a job is working from so we can restart stuck jobs from a single job id

v1.2.42

07 Feb 00:17
Compare
Choose a tag to compare

Fix "dynamic property Resque_Redis::$driver is deprecated" warning in php 8.2

1.2.41

01 Aug 22:46
Compare
Choose a tag to compare

Convert strftime to date due to php 8.1 depreciation

1.2.40

15 Nov 23:29
Compare
Choose a tag to compare

Log signal child process received/shutdown from

1.2.39

15 Nov 23:23
Compare
Choose a tag to compare

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

04 Nov 17:33
Compare
Choose a tag to compare

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.