|
43 | 43 | This fixes the problem where celeryd is launched in the background |
44 | 44 | when closing the terminal. |
45 | 45 |
|
46 | | -* celeryd: Now joins thread at shutdown. |
| 46 | +* celeryd: Now joins threads at shutdown. |
47 | 47 |
|
48 | 48 | See http://github.com/ask/celery/issues/issue/152 |
49 | 49 |
|
50 | | -* Test deardown: Don't use atexit but nose's ``teardown()`` functionality |
| 50 | +* Test teardown: Don't use atexit but nose's ``teardown()`` functionality |
51 | 51 | instead. |
52 | 52 |
|
53 | 53 | See http://github.com/ask/celery/issues/issue/154 |
54 | 54 |
|
55 | 55 | * Debian init script for celeryd: Stop now works correctly. |
56 | 56 |
|
57 | | -* Task logger: Add ``warn`` method (synonym for ``warning``) |
| 57 | +* Task logger: ``warn`` method added (synonym for ``warning``) |
58 | 58 |
|
59 | | -* Can now define a whitelist of errors to send e-mails for. |
| 59 | +* Can now define a whitelist of errors to send error e-mails for. |
60 | 60 |
|
61 | 61 | Example:: |
62 | 62 |
|
63 | 63 | CELERY_TASK_ERROR_WHITELIST = ('myapp.MalformedInputError') |
64 | 64 |
|
65 | 65 | See http://github.com/ask/celery/issues/issue/153 |
66 | 66 |
|
67 | | -* celeryd: Now handles overflow exceptions in time.mktime when parsing |
| 67 | +* celeryd: Now handles overflow exceptions in ``time.mktime`` while parsing |
68 | 68 | the ETA field. |
69 | 69 |
|
70 | | -* LoggerWrapper: Try to detect loggers logging back to stderr/stdout to |
| 70 | +* LoggerWrapper: Try to detect loggers logging back to stderr/stdout making |
71 | 71 | an infinite loop. |
72 | 72 |
|
73 | 73 | * Added :class:`celery.task.control.inspect`: Inspects a running worker. |
74 | 74 |
|
75 | | - Examples: |
| 75 | + Examples:: |
76 | 76 |
|
77 | 77 | # Inspect a single worker |
78 | 78 | >>> i = inspect("myworker.example.com") |
|
109 | 109 | Containing the original arguments and fields of the task requested. |
110 | 110 |
|
111 | 111 | In addition the remote control command ``set_loglevel`` has been added, |
112 | | - this only changes the loglevel for the mainprocess logger. |
| 112 | + this only changes the loglevel for the main process. |
113 | 113 |
|
114 | | -* Worker control command execution now catches exceptions and returns them |
115 | | - in the reply. |
| 114 | +* Worker control command execution now catches errors and returns their |
| 115 | + string representation in the reply. |
116 | 116 |
|
117 | 117 | * Functional test suite added |
118 | 118 |
|
119 | | - :mod:`celery.tests.functional.case` contains utilties to start |
120 | | - and stop an embedded celeryd for use in functional testing. |
| 119 | + :mod:`celery.tests.functional.case` contains utilities to start |
| 120 | + and stop an embedded celeryd process, for use in functional testing. |
121 | 121 |
|
122 | 122 | 2.0.1 |
123 | 123 | ===== |
|
0 commit comments