mirror of
https://github.com/status-im/cabot.git
synced 2025-02-23 18:08:06 +00:00
This caused inaccurate timings and some duplicate jobs running. There should only ever be a single beat service, whereas we were using a dev feature to run a beat service on all 16 workers
4 lines
188 B
Plaintext
4 lines
188 B
Plaintext
web: gunicorn cabot.wsgi:application --config gunicorn.conf
|
|
celery: celery worker -A cabot --loglevel=INFO --concurrency=16 -Ofair
|
|
beat: celery beat -A cabot --loglevel=INFO
|