Skip to content

Commit 77e9d51

Browse files
committed
Fix typography in multiple consumers paragraph
1 parent 40bba4e commit 77e9d51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,12 +469,12 @@ Is very similar to the previous example, we just have an extra `addRequest` call
469469
### Multiple Consumers ###
470470
471471
It's a good practice to have a lot of queues for logic separation. With a simple consumer you will have to create one worker (consumer) per queue and it can be hard to manage when dealing
472-
with many evolutions (forget to add a line in your supervisord configuration ?). This is also useful for small queues as you may not want to have as many workers as queues, and want to regroup
472+
with many evolutions (forget to add a line in your supervisord configuration?). This is also useful for small queues as you may not want to have as many workers as queues, and want to regroup
473473
some tasks together without losing flexibility and separation principle.
474474
475475
Multiple consumers allow you to handle this use case by listening to multiple queues on the same consumer.
476476
477-
Here is how you can set a consumer with multiple queues :
477+
Here is how you can set a consumer with multiple queues:
478478
479479
```yaml
480480
multiple_consumers:

0 commit comments

Comments
 (0)