I am using celery with django and trying to get Task as shown below:
class task1 (Task)
def run (self):
launch_some_other_task.delay()
But it doesnโt seem to work, I can dwell on my code in more detail, but I decided that first I would ask if it would work, as if it did not work for me. I find this necessary because I use selenium, a web testing platform where sometimes it just hangs, where I canโt get any result from this, so I want to be able to kill if off, if a certain condition not performed (updating the memcache variable with a specific value for a certain number of seconds).
Thanks for any advice on this.
source
share