Skip to content

Instantly share code, notes, and snippets.

@ChillarAnand
Last active August 29, 2015 14:06
Show Gist options
  • Save ChillarAnand/77be59df924dd50ac9ce to your computer and use it in GitHub Desktop.
Save ChillarAnand/77be59df924dd50ac9ce to your computer and use it in GitHub Desktop.
Celery Countdown
In [95]: add.s(1,1)
Out[95]: apps.processing.tasks.add(1, 1)
In [96]: add.s(1,1).set(countdown=10)
Out[96]: apps.processing.tasks.add(1, 1)
#no countdown here
In [97]: add.s((1,1), countdown=10)
Out[97]: apps.processing.tasks.add((1, 1), countdown=10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment