Last active
August 29, 2015 14:06
-
-
Save ChillarAnand/77be59df924dd50ac9ce to your computer and use it in GitHub Desktop.
Celery Countdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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