0 votes
in Celery by
Consider a task T. Write the code to execute in 10 seconds from now, specified using ETA.

a) T.apply_async(ETA=now + timedelta(seconds=10))

b) T.apply_async(ETA=now + timedelta(10))

c) T.apply_async(eta=now + timedelta(seconds=10))

d) T.apply_async(countdown=10)

1 Answer

0 votes
by
a) T.apply_async(ETA=now + timedelta(seconds=10))

Related questions

0 votes
0 votes
asked Jun 19, 2022 in Celery by john ganales
0 votes
asked Jun 19, 2022 in Celery by john ganales
...