Skip to content

Commit

Permalink
2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Oct 16, 2019
1 parent 2379de8 commit 7c87d60
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,22 @@ Changelog

## master

[View commits](https://github.com/coleifer/huey/compare/2.1.2...HEAD)
[View commits](https://github.com/coleifer/huey/compare/2.1.3...HEAD)

## 2.1.3

* Fix semantics of `SIGNAL_COMPLETE` so that it is not sent until the result is
ready.
* Use classes for the specific Huey implementations (e.g. `RedisHuey`) so that
it is easier to subclass / extend. Previously we just used a partial
application of the constructor, which could be confusing.
* Fix shutdown logic in consumer when using multiprocess worker model.
Previously the consumer would perform a "graceful" shutdown, even when an
immediate shutdown was requested (SIGTERM). Also cleans up the
signal-handling code and ensures that interrupted tasks log a warning
properly to indicate they were interrupted.

[View commits](https://github.com/coleifer/huey/compare/2.1.2...2.1.3)

## 2.1.2

Expand Down
2 changes: 1 addition & 1 deletion huey/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = 'Charles Leifer'
__license__ = 'MIT'
__version__ = '2.1.2'
__version__ = '2.1.3'

from huey.api import BlackHoleHuey
from huey.api import Huey
Expand Down

0 comments on commit 7c87d60

Please sign in to comment.