We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sentry run {celery,cron}
1 parent 8ad7423 commit eef4849Copy full SHA for eef4849
src/sentry/runner/commands/run.py
@@ -133,9 +133,9 @@ def worker(**options):
133
134
from sentry.celery import app
135
worker = app.Worker(
136
- without_gossip=True,
137
- without_mingle=True,
138
- without_heartbeat=True,
+ # without_gossip=True,
+ # without_mingle=True,
+ # without_heartbeat=True,
139
pool_cls='processes',
140
**options
141
)
@@ -170,8 +170,8 @@ def cron(**options):
170
171
172
app.Beat(
173
174
175
176
177
).run()
0 commit comments