I have task deferred in appengine python its a simple call with all task_info strings, list of strings. It works well for any no of tasks.
deferred.defer(fetch_service,
_queue = "queue_name",
_countdown = task_counter * 4,
**task_info )
I observed a weird behaviour, when I access some endpoints or UI in different URL or different modules, this deferred calls start to fail. Every differed call throws same issue.
File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/ext/deferred/deferred.py", line 145, in run
raise PermanentTaskFailure(e)
PermanentTaskFailure: None.fetch_service forbidden in unpickling
Looking for any help, or others who faced same issue.