Skip to content

Commit

Permalink
chore: enable gossip for flower and to squelch errors (#19823)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuziontech authored Jan 18, 2024
1 parent fe97b7a commit 6b50aff
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions bin/docker-worker-celery
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@ help () {
echo " --concurrency=<N> start N workers (overrides env var WEB_CONCURRENCY)"
echo
echo "Advanced Celery options (disabled by default):"
echo " --with-gossip start Celery gossip (useful for Prometheus)"
echo " --with-heartbeat start Celery internal heartbeat (normally not useful)"
echo " --with-mingle start Celery mingle (normally not useful)"
exit 0
}

with_scheduler=false
with_gossip=false
with_gossip=true
with_heartbeat=false
with_mingle=false

Expand All @@ -37,10 +36,6 @@ while test $# -gt 0; do
with_scheduler=true
shift
;;
--with-gossip)
with_gossip=true
shift
;;
--with-heartbeat)
with_heartbeat=true
shift
Expand Down

0 comments on commit 6b50aff

Please sign in to comment.