summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSelwin Ong <selwin.ong@gmail.com>2019-04-14 18:24:49 +0700
committerSelwin Ong <selwin.ong@gmail.com>2019-04-14 18:26:41 +0700
commita33ed3a01959b028ad6394702071c8b8078e9d46 (patch)
tree81c7bfe5dc7e1f61d5cecad9ef337563e63e8044
parent7021cedaf9614143ddc0d8bbfb0c75f9301c7f47 (diff)
downloadrq-a33ed3a01959b028ad6394702071c8b8078e9d46.tar.gz
Updated docs to change "normal" to "default"
-rw-r--r--docs/patterns/supervisor.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/patterns/supervisor.md b/docs/patterns/supervisor.md
index f45a12e..d14a9e6 100644
--- a/docs/patterns/supervisor.md
+++ b/docs/patterns/supervisor.md
@@ -20,7 +20,7 @@ use the following supervisor settings:
; /path/to/virtualenv/bin/rq
; Also, you probably want to include a settings module to configure this
; worker. For more info on that, see http://python-rq.org/docs/workers/
-command=/path/to/rq worker -c mysettings high normal low
+command=/path/to/rq worker -c mysettings high default low
; process_num is required if you specify >1 numprocs
process_name=%(program_name)s-%(process_num)s
@@ -52,7 +52,7 @@ dependencies. You can use a similar approach as with regular virtualenvs.
; Also, you probably want to include a settings module to configure this
; worker. For more info on that, see http://python-rq.org/docs/workers/
environment=PATH='/opt/conda/envs/myenv/bin'
-command=/opt/conda/envs/myenv/bin/rq worker -c mysettings high normal low
+command=/opt/conda/envs/myenv/bin/rq worker -c mysettings high default low
; process_num is required if you specify >1 numprocs
process_name=%(program_name)s-%(process_num)s