Skip to content

Commit 04e77c0

Browse files
committed
Merge branch 'master' of github.com:celery/celery
2 parents 63dcb10 + f661dc9 commit 04e77c0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/faq.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ to use both.
760760

761761
`Task.retry` is used to retry tasks, notably for expected errors that
762762
is catchable with the `try:` block. The AMQP transaction is not used
763-
for these errors: **if the task raises an exception it is still acknowledged!**.
763+
for these errors: **if the task raises an exception it is still acknowledged!**
764764

765765
The `acks_late` setting would be used when you need the task to be
766766
executed again if the worker (for some reason) crashes mid-execution.
@@ -786,7 +786,7 @@ scenario of course, but you can probably imagine something far more
786786
sinister. So for ease of programming we have less reliability;
787787
It's a good default, users who require it and know what they
788788
are doing can still enable acks_late (and in the future hopefully
789-
use manual acknowledgement)
789+
use manual acknowledgement).
790790

791791
In addition `Task.retry` has features not available in AMQP
792792
transactions: delay between retries, max retries, etc.

docs/userguide/workers.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ is the *process index* not the process count or pid.
191191
three log files:
192192

193193
- :file:`worker1.log` (main process)
194-
- :file:`worker1-1.log`` (pool process 1)
195-
- :file:`worker1-2.log`` (pool process 2)
194+
- :file:`worker1-1.log` (pool process 1)
195+
- :file:`worker1-2.log` (pool process 2)
196196

197197
.. _worker-concurrency:
198198

0 commit comments

Comments
 (0)