mbroadst / qamqp

AMQP 0.9.1 implementation for Qt
Other
151 stars 127 forks source link

Wrong mime type in publish() method #86

Open DmitryDemidov80 opened 5 months ago

DmitryDemidov80 commented 5 months ago

Hi! In QAmqpExchange::publish() method call publish() with myme type "text.plain" but i think should be "text/plain".

Thanks!

WollZebra commented 5 months ago

Hi Dmitry,

the internet says that you are right. How did you find out? Does rabbitMq throws a warning somewhere? It would be nice if you could test what happens if you change it to text/plain in a living environment.

Greetings!

DmitryDemidov80 commented 5 months ago

Hi! This error found my friends several years ago. As far as i remember there were no throws, no warnings from rabbitMq but some packets was corrupted. In our project we changed to "text/plain" and it works OK.