Skip to content

Commit 3c4968e

Browse files
authored
fixed data type typo (#219)
* fixed data type typo * fixed data type typo on MONGODB_LOGS
1 parent aee77f8 commit 3c4968e

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
@@ -14,7 +14,7 @@ The following general flags can be passed as command-line arguments to either **
1414
- `--trace_memory_output_dir`: Directory where to output .pngs with object graphs. Defaults to folder **memory_traces**.
1515
- `--profile`: Run profiling on the whole worker. Defaults to **false**.
1616
- `--mongodb_jobs, --mongodb`: MongoDB URI for the jobs, scheduled_jobs & workers database. Defaults to **mongodb://127.0.0.1:27017/mrq**.
17-
- `--mongodb_logs` :MongoDB URI for the logs database."0" will disable remote logs, "1" will use main MongoDB. Defaults to **1**
17+
- `--mongodb_logs` :MongoDB URI for the logs database."0" will disable remote logs, "1" will use main MongoDB. Defaults to **"1"**
1818
- `--mongodb_logs_size`: If provided, sets the log collection to capped to that amount of bytes.
1919
- `--redis`: Redis URI. Defaults to **redis://127.0.0.1:6379**.
2020
- `--redis_prefix`: Redis key prefix. Defaults to "mrq".

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Remember, put mrq-config.py in your workers directory.
1818
"""
1919
#MongoDB settings
2020
MONGODB_JOBS = "mongodb://127.0.0.1:27017/mrq" # MongoDB URI for the jobs, scheduled_jobs & workers database.Defaults to mongodb://127.0.0.1:27017/mrq
21-
MONGODB_LOGS = 1 #MongoDB URI for the logs database."0" will disable remote logs, "1" will use main MongoDB.Defaults to 1
21+
MONGODB_LOGS = "1" #MongoDB URI for the logs database."0" will disable remote logs, "1" will use main MongoDB.Defaults to 1
2222
MONGODB_LOGS_SIZE = None #If provided, sets the log collection to capped to that amount of bytes.
2323

2424
#Redis settings

0 commit comments

Comments
 (0)