Skip to content

Commit

Permalink
Merge pull request #393 from qria/rename-celery-entrypoint-scripts
Browse files Browse the repository at this point in the history
Minor fix: Rename celery entrypoint scripts
  • Loading branch information
RadoRado authored May 27, 2024
2 parents 2cda605 + ec6671c commit 04edde1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/beats_entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
echo "--> Starting beats process"
celery -A styleguide_example.tasks worker -l info --without-gossip --without-mingle --without-heartbeat
celery -A styleguide_example.tasks beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler
2 changes: 1 addition & 1 deletion docker/celery_entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
echo "--> Starting celery process"
celery -A styleguide_example.tasks beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler
celery -A styleguide_example.tasks worker -l info --without-gossip --without-mingle --without-heartbeat

0 comments on commit 04edde1

Please sign in to comment.