File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -760,7 +760,7 @@ to use both.
760
760
761
761
`Task.retry ` is used to retry tasks, notably for expected errors that
762
762
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! **
764
764
765
765
The `acks_late ` setting would be used when you need the task to be
766
766
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
786
786
sinister. So for ease of programming we have less reliability;
787
787
It's a good default, users who require it and know what they
788
788
are doing can still enable acks_late (and in the future hopefully
789
- use manual acknowledgement)
789
+ use manual acknowledgement).
790
790
791
791
In addition `Task.retry ` has features not available in AMQP
792
792
transactions: delay between retries, max retries, etc.
Original file line number Diff line number Diff line change @@ -191,8 +191,8 @@ is the *process index* not the process count or pid.
191
191
three log files:
192
192
193
193
- :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)
196
196
197
197
.. _worker-concurrency :
198
198
You can’t perform that action at this time.
0 commit comments