How can i pass django request object to celery worker. When try to pass the request object it throws a Error
Can't Pickle Input Objects
It seems that celery serialize any arguments passed to worker. I tried using other serialization methods like JSON.
CELERY_TASK_SERIALIZER = "JSON"
But it is not working.
Is it possible to configure celery so that it won't serialize data. Or can i convert request object to a string before passing to worker and then convert again back to object in worker.
Thanks in advance...