Skip to content

Commit

Permalink
Worker Start Command Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
DEKHTIARJonathan committed Aug 20, 2017
1 parent 97837ad commit 2707c11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ applications:
disk_quota: 2G
path: .
buildpack: https://github.com/cloudfoundry/buildpack-python.git
command: celery worker -A application -l info --events --detach && celery beat -A application --loglevel=info --detach && celery events -A application --loglevel=info --camera=django_celery_monitor.camera.Camera --frequency=2.0 --detach
command: celery beat -A application --loglevel=info --detach && celery events -A application --loglevel=info --camera=django_celery_monitor.camera.Camera --frequency=2.0 --detach && celery worker -A application -l info --events
stack: cflinuxfs2
health-check-type: process
no-route: true
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ applications:
disk_quota: 2G
path: .
buildpack: https://github.com/cloudfoundry/buildpack-python.git
command: celery worker -A application -l info --events
command: celery beat -A application --loglevel=info --detach && celery events -A application --loglevel=info --camera=django_celery_monitor.camera.Camera --frequency=2.0 --detach && celery worker -A application -l info --events
stack: cflinuxfs2
health-check-type: process
no-route: true

0 comments on commit 2707c11

Please sign in to comment.