[23.09.2020] sending testing

This commit is contained in:
Andy Sotheran 2020-09-23 23:32:13 +01:00
parent ea57723a3c
commit 9cdb599cf4

View File

@ -22,7 +22,7 @@ def activeMQSender(message, logger):
con = stomp.Connection([(addr, port)]) con = stomp.Connection([(addr, port)])
con.connect( mqUser, mqPass, wait=True) con.connect( mqUser, mqPass, wait=True)
con.send("PricingSave.dlq", message, headers={"Content-Type":"application/json"}) con.send("PricingSave.dlq", message, content_type="application/json", headers={"Content-Type":"application/json"})
con.disconnect() con.disconnect()