From a33ed3a01959b028ad6394702071c8b8078e9d46 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Sun, 14 Apr 2019 18:24:49 +0700 Subject: [PATCH] Updated docs to change "normal" to "default" --- docs/patterns/supervisor.md | 4 ++-- 1 file 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