File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 3
3
History
4
4
-------
5
5
6
- v0.3.2 (TBD )
6
+ v0.3.2 (2017-01-24 )
7
7
...................
8
8
* improved solution for preventing new jobs starting when the worker is about to stop
9
+ * switch ``SIGRTMIN `` > ``SIGUSR1 `` to work with mac
9
10
10
11
v0.3.1 (2017-01-20)
11
12
...................
Original file line number Diff line number Diff line change 2
2
3
3
__all__ = ['VERSION' ]
4
4
5
- VERSION = StrictVersion ('0.3.2a1 ' )
5
+ VERSION = StrictVersion ('0.3.2 ' )
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class BadJob(Exception):
36
36
37
37
38
38
# special signal sent by the main process in case the worker process hasn't received a signal (eg. SIGTERM or SIGINT)
39
- SIG_PROXY = signal .SIGRTMIN + 7
39
+ SIG_PROXY = signal .SIGUSR1
40
40
41
41
42
42
class BaseWorker (RedisMixin ):
You can’t perform that action at this time.
0 commit comments