Tagged Questions
-2
votes
1answer
222 views
Can I use java send task to celery through rabbitmq?
I just touch celery and java for 2 days. :(
Right now, I have a task that java client send task through rabbitmq. Celery will be the worker to handle task.
I know it's easy for ...
1
vote
2answers
359 views
json.loads() failing
So I'm working on a django project which uses a celery task queue to make HTTP requests.
In my celery task code I have:
json.loads('{"content-type": "application/json"}')
print test.headers
...