Miserlou/Zappa
View on GitHubRunning zappa.async tasks outside of Lambda [DOCUMENTATION]
Open
#1124 opened on Sep 22, 2017
hacktoberfesthelp wanted
Description
Currently porting over some Celery tasks to Zappa ones. One concern I have is that celery has a setting called ALWAYS_EAGER which causes it to skip the queue and run immediately, this is useful when testing simple cases and during simple local development.
I've looked but haven't found a out of the box way to to do this with Zappa. I'm considering implementing a ZAPPA_TASK_ALWAYS_EAGER toggle in my own code which would swap out the decorator for no decorator which should do the trick but it seems generally useful.
So I'm happy to fork and PR something if folks thinks its useful.