Skip to content Skip to sidebar Skip to footer

Kombu/Celery Messaging

I have a simple application that sends & receives messages, kombu, and uses Celery to task the message. Kombu alon, I can receive the message properly. when I send 'Hello', kom

Solution 1:

I found an answer to my problem and to anyone who may come across this kind of problem, I'll share the answer that worked for me.

I found the solution here.

Or here - user jennaliu answer may probably help you if the first link didn't work.


Solution 2:

You need to call result.get() to receive the actual value of add.delay(). What you are seeing as the message body is AsyncResult instance in string format. Which doesn't make much sense.


Post a Comment for "Kombu/Celery Messaging"