Hi,

I am trying to set some application properties on a message to be sent
using Qpid Python 0.36 using the following code:
msg = Message(
                body="the body",
                properties={
                    "status": 200
                },
                address="reply-to-address",
                correlation_id="correlationId",
                content_type="text/plain"
            )

when I send this message then at the consumer side I am not able to
retrieve the "status" from the message's application properties.

Taking a look at the Message class source code it looks to me as if the
properties parameter is not used at all in the Message instance.

Can you shed some light on this?

Regards,
Kai

Reply via email to