Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dummyusers:
cd contentcuration/ && python manage.py loaddata contentcuration/fixtures/admin_user_token.json

prodceleryworkers:
cd contentcuration/ && celery -A contentcuration worker -l info --concurrency=3
cd contentcuration/ && celery -A contentcuration worker -l info --concurrency=3 --without-mingle --without-gossip

prodcelerydashboard:
# connect to the celery dashboard by visiting http://localhost:5555
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"devserver:hot": "npm-run-all --parallel build:dev:hot runserver",
"devshell": "cd contentcuration && python manage.py shell --settings=contentcuration.dev_settings",
"celery:dashboard": "cd contentcuration && celery -A contentcuration flower",
"celery": "(cd contentcuration && DJANGO_SETTINGS_MODULE=contentcuration.dev_settings celery -A contentcuration worker -l info) || true"
"celery": "(cd contentcuration && DJANGO_SETTINGS_MODULE=contentcuration.dev_settings celery -A contentcuration worker --without-mingle --without-gossip -l info) || true"
},
"repository": {
"type": "git",
Expand Down