Replies: 1 comment
-
I'd like to add that if I set a @celery.shared_task(acks_late=True, acks_on_failure_or_timeout=False, time_limit=5)
def late_task_crashing() -> None:
import time
logger.info("Crashing")
time.sleep(10)
raise Exception("Foo") |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have this basic task:
Broker is RabbitMQ, using Celery 5.5.2. I'd expect the task not to be ACKED and thus retried. But it is not. Even if I restart the celery service, they are not picked up again. What am I missing?
Beta Was this translation helpful? Give feedback.
All reactions