mirror of https://github.com/rq/rq.git
Bump version to 1.6.1
This commit is contained in:
parent
6fab48845f
commit
3ead30a34e
|
@ -1,9 +1,11 @@
|
||||||
|
### RQ 1.6.1 (2020-11-08)
|
||||||
|
* Worker now properly releases scheduler lock when run in burst mode. Thanks @selwin!
|
||||||
|
|
||||||
### RQ 1.6.0 (2020-11-08)
|
### RQ 1.6.0 (2020-11-08)
|
||||||
* Workers now listen to external commands via pubsub. The first two features taking advantage of this infrastructure are `send_shutdown_command()` and `send_kill_horse_command()`. Thanks @selwin!
|
* Workers now listen to external commands via pubsub. The first two features taking advantage of this infrastructure are `send_shutdown_command()` and `send_kill_horse_command()`. Thanks @selwin!
|
||||||
* Added `job.last_heartbeat` property that's periodically updated when job is running. Thanks @theambient!
|
* Added `job.last_heartbeat` property that's periodically updated when job is running. Thanks @theambient!
|
||||||
* Now horses are killed by their parent group. This helps in cleanly killing all related processes if job uses multiprocessing. Thanks @theambient!
|
* Now horses are killed by their parent group. This helps in cleanly killing all related processes if job uses multiprocessing. Thanks @theambient!
|
||||||
* Fixed scheduler usage with Redis connections that uses custom parser classes. Thanks @selwin!
|
* Fixed scheduler usage with Redis connections that uses custom parser classes. Thanks @selwin!
|
||||||
* Worker now properly releases scheduler lock when run in burst mode. Thanks @selwin!
|
|
||||||
* Scheduler now enqueue jobs in batches to prevent lock timeouts. Thanks @nikkonrom!
|
* Scheduler now enqueue jobs in batches to prevent lock timeouts. Thanks @nikkonrom!
|
||||||
* Scheduler now follows RQ worker's logging configuration. Thanks @christopher-dG!
|
* Scheduler now follows RQ worker's logging configuration. Thanks @christopher-dG!
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
from __future__ import (absolute_import, division, print_function,
|
from __future__ import (absolute_import, division, print_function,
|
||||||
unicode_literals)
|
unicode_literals)
|
||||||
|
|
||||||
VERSION = '1.6.0'
|
VERSION = '1.6.1'
|
||||||
|
|
Loading…
Reference in New Issue