We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef25259 commit 5ef1dd5Copy full SHA for 5ef1dd5
README.md
@@ -59,10 +59,14 @@ Jobs have a `state` field which can have one of the following values:
59
60
For debugging/development purposes, a simple management command is supplied to create jobs:
61
62
- manage.py create_job <job_name> --workspace '{"key": "value"}'
+ manage.py create_job <job_name> --queue_name 'my_queue_name' --workspace '{"key": "value"}'
63
64
The `workspace` flag is optional. If supplied, it must be a valid JSON string.
65
66
+`queue_name` is optional and defaults to `default`
67
+
68
To start a worker:
69
- manage.py worker
70
+ manage.py worker [queue_name]
71
72
+`queue_name` is optional, and will default to `default`
0 commit comments