Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: enable gossip for flower and to squelch errors #19823

Merged
merged 1 commit into from
Jan 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading