Skip to content

Commit e6a898e

Browse files
committed
fix mmissing parameter in run mapswipe_workers
1 parent b48f715 commit e6a898e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

docs/source/cli.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ This document describes how to use the command line interface of MapSwipe Worker
44

55
In our current deployment setup the commands of the MapSwipe Workers CLI are hard-coded in the Docker-Compose File.
66

7+
You can run these commands also using docker-compose:
8+
```
9+
docker-compose run mapswipe_workers mapswipe_workers --help
10+
```
11+
712

813
```
914
Usage: mapswipe_workers [OPTIONS] COMMAND [ARGS]...

mapswipe_workers/mapswipe_workers/mapswipe_workers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ def run(schedule, only_new_results):
338338
def _run():
339339
_run_create_projects()
340340
project_id_list = _run_firebase_to_postgres()
341-
_run_generate_stats(project_id_list)
341+
_run_generate_stats(project_id_list, None)
342342

343343

344344
def _run_create_projects(project_draft_ids=None):

0 commit comments

Comments
 (0)