I have a task in tasks.py like so:
@app.task
def location(request):
....
I am trying to pass the request object directly from a few to task like so:
def tag_location(request):
tasks.location.delay(request)
return JsonResponse({'response': 1})
I am getting an error that it can't be serialized i guess? How do I fix this? trouble is I have file upload objects as well .. its not all simple data types.
Because the request object contains references to things which aren't practical to serialize — like uploaded files, or the socket associated with the request — there's no general purpose way to serialize it.
Instead, you should just pull out and pass the portions of it that you need. For example, something like: