Skip to content

Commit eef4849

Browse files
committed
Remove hardcoded celery options through sentry run {celery,cron}
1 parent 8ad7423 commit eef4849

File tree

1 file changed

+6
-6
lines changed
  • src/sentry/runner/commands

1 file changed

+6
-6
lines changed

src/sentry/runner/commands/run.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ def worker(**options):
133133

134134
from sentry.celery import app
135135
worker = app.Worker(
136-
without_gossip=True,
137-
without_mingle=True,
138-
without_heartbeat=True,
136+
# without_gossip=True,
137+
# without_mingle=True,
138+
# without_heartbeat=True,
139139
pool_cls='processes',
140140
**options
141141
)
@@ -170,8 +170,8 @@ def cron(**options):
170170

171171
from sentry.celery import app
172172
app.Beat(
173-
without_gossip=True,
174-
without_mingle=True,
175-
without_heartbeat=True,
173+
# without_gossip=True,
174+
# without_mingle=True,
175+
# without_heartbeat=True,
176176
**options
177177
).run()

0 commit comments

Comments
 (0)