Skip to content

Commit

Permalink
Remove --autoreload flag from celery worker in dev server
Browse files Browse the repository at this point in the history
This was an experimental feature that was removed in Celery 4.x.
See http://docs.celeryproject.org/en/latest/whatsnew-4.0.html#removed-features
  • Loading branch information
robertknight committed Mar 12, 2018
1 parent 784c1ef commit 30b09c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h/cli/commands/devserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def devserver(https, web, ws, worker, assets, beat):
m.add_process('ws', 'gunicorn --name websocket --reload --paste conf/development-websocket.ini %s' % gunicorn_args)

if worker:
m.add_process('worker', 'hypothesis --dev celery worker --autoreload -l INFO')
m.add_process('worker', 'hypothesis --dev celery worker -l INFO')

if beat:
m.add_process('beat', 'hypothesis --dev celery beat')
Expand Down

0 comments on commit 30b09c6

Please sign in to comment.