summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSelwin Ong <selwin.ong@gmail.com>2019-04-14 18:25:24 +0700
committerSelwin Ong <selwin.ong@gmail.com>2019-04-14 18:26:41 +0700
commit2af3d829b09c6243148a561b0495965c95a27db0 (patch)
tree04f639b307f587585cafbc43da4e4b4b72602891
parenta33ed3a01959b028ad6394702071c8b8078e9d46 (diff)
downloadrq-2af3d829b09c6243148a561b0495965c95a27db0.tar.gz
Updated docs to change "normal" to "default"
-rw-r--r--docs/docs/workers.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/docs/workers.md b/docs/docs/workers.md
index 739ba6b..b84859e 100644
--- a/docs/docs/workers.md
+++ b/docs/docs/workers.md
@@ -14,11 +14,11 @@ To start crunching work, simply start a worker from the root of your project
directory:
```console
-$ rq worker high normal low
-*** Listening for work on high, normal, low
+$ rq worker high default low
+*** Listening for work on high, default, low
Got send_newsletter('me@nvie.com') from default
Job ended normally without result
-*** Listening for work on high, normal, low
+*** Listening for work on high, default, low
...
```
@@ -41,8 +41,8 @@ mode_ to finish all currently available work and quit as soon as all given
queues are emptied.
```console
-$ rq worker --burst high normal low
-*** Listening for work on high, normal, low
+$ rq worker --burst high default low
+*** Listening for work on high, default, low
Got send_newsletter('me@nvie.com') from default
Job ended normally without result
No more work, burst finished.
@@ -246,7 +246,7 @@ REDIS_URL = 'redis://localhost:6379/1'
# REDIS_PASSWORD = 'very secret'
# Queues to listen on
-QUEUES = ['high', 'normal', 'low']
+QUEUES = ['high', 'default', 'low']
# If you're using Sentry to collect your runtime exceptions, you can use this
# to configure RQ for it in a single step