Skip to content

Commit

Permalink
Fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
chromium7 committed Dec 7, 2023
1 parent 5cbfdb6 commit 8303c4b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions django_rq/management/commands/rqpool.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@

class Command(BaseCommand):
"""
Runs RQ workers on specified queues. Note that all queues passed into a
Runs RQ pool with x number of workers on specified queues.
Note that all queues passed into a
single rqworker command must share the same connection.
Example usage:
python manage.py rqworker high medium low
python manage.py rqpool high medium low --num-workers 4
"""

args = '<queue queue ...>'
Expand Down

0 comments on commit 8303c4b

Please sign in to comment.