diff --git a/bin/docker-worker-beat b/bin/docker-worker-beat index ca0e63338a3..6b789b38fe8 100755 --- a/bin/docker-worker-beat +++ b/bin/docker-worker-beat @@ -1,6 +1,5 @@ #!/bin/bash set -e - rm celerybeat.pid || echo "celerybeat.pid not found, proceeding" -celery -A posthog beat -S redbeat.RedBeatScheduler -n node@%%h \ No newline at end of file +celery -A posthog beat -S redbeat.RedBeatScheduler \ No newline at end of file diff --git a/bin/docker-worker-celery b/bin/docker-worker-celery index ef63611f9b6..8bb32f33a67 100755 --- a/bin/docker-worker-celery +++ b/bin/docker-worker-celery @@ -65,7 +65,6 @@ fi FLAGS=() FLAGS+=("-Ofair") -FLAGS+=("-n node@%%h") [ "$with_gossip" == "false" ] && FLAGS+=("--without-gossip") [ "$with_mingle" == "false" ] && FLAGS+=("--without-mingle") [ "$with_heartbeat" == "false" ] && FLAGS+=("--without-heartbeat") diff --git a/bin/start-worker b/bin/start-worker index a79a96df7f3..5ae9cd8a73f 100755 --- a/bin/start-worker +++ b/bin/start-worker @@ -5,7 +5,7 @@ set -e trap 'kill $(jobs -p)' EXIT # start celery worker with heartbeat (-B) -celery -A posthog worker -B --scheduler redbeat.RedBeatScheduler --without-heartbeat --without-gossip --without-mingle -Ofair -n node@%%h & +celery -A posthog worker -B --scheduler redbeat.RedBeatScheduler --without-heartbeat --without-gossip --without-mingle -Ofair & # start celery plugin worker ./bin/plugin-server