From 45aef7a228732e211d61a8f96c0a95fe6667696b Mon Sep 17 00:00:00 2001 From: Andy Sotheran Date: Fri, 25 Sep 2020 13:58:30 +0100 Subject: [PATCH] [25.09.2020] Changed to actual consumer queue --- src/utils/activemqConnect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/activemqConnect.py b/src/utils/activemqConnect.py index a310919..2affece 100644 --- a/src/utils/activemqConnect.py +++ b/src/utils/activemqConnect.py @@ -22,7 +22,7 @@ def activeMQSender(message, logger): con = stomp.Connection([(addr, port)], auto_content_length=False) con.connect( mqUser, mqPass, wait=True) - con.send("PricingSave.dlq", message, content_type="application/json", headers={"Content-Type":"application/json"}) + con.send("PricingSave", message, content_type="application/json", headers={"Content-Type":"application/json"}) con.disconnect()