Skip to content

Commit a6d2242

Browse files
committed
fixed typo in docs
1 parent 4599525 commit a6d2242

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/command-line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ You can pass additional configuration flags:
4646
- `--max_jobs`: Gevent:max number of jobs to do before quitting. Use as a workaround for memory leaks in your tasks. Defaults to **0**
4747
- `--max_memory`: Max memory (in Mb) after which the process will be shut down. Use with `--processes [1-N]`
4848
to have the worker automatically respawn when this happens. Defaults to **1**
49-
- `--grenlets, --gevent, --g`: Max number of greenlets to use. Defaults to **1**.
49+
- `--greenlets, --gevent, --g`: Max number of greenlets to use. Defaults to **1**.
5050
- `--processes, --p`: Number of processes to launch . Defaults to **0**.
5151
- `--scheduler`: Run the scheduler. Defaults to **false**.
5252
- `--scheduler_interval`: Seconds between scheduler checks. Defaults to **60** seconds, only ints are acceptable.

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ QUEUES = ("default",) # The queues to listen on.Defaults to default , which will
5757
MAX_JOBS = 0 #Gevent:max number of jobs to do before quitting. Workaround for memory leaks in your tasks. Defaults to 0
5858
MAX_TIME = 0 # max number of seconds a worker runs before quitting
5959
MAX_MEMORY = 1 #Max memory (in Mb) after which the process will be shut down. Use with PROCESS = [1-N] to have the worker automatically respawned when this happens.Defaults to 1
60-
GRENLETS = 1 #Max number of greenlets to use.Defaults to 1.
60+
GREENLETS = 1 #Max number of greenlets to use.Defaults to 1.
6161
PROCESSES = 0 #Number of processes to launch.Defaults to 0.
6262
SCHEDULER = False #Run the scheduler.Defaults to False.
6363
SCHEDULER_INTERVAL = 60 #Seconds between scheduler checks.Defaults to 60 seconds, only ints are acceptable.

0 commit comments

Comments
 (0)