[23.09.2020] Convert Dict to String

This commit is contained in:
Andy Sotheran 2020-09-23 21:31:27 +01:00
parent bf78fb7c40
commit 7e167cfe7e

View File

@ -126,7 +126,9 @@ def sentToArtemis(c_type, timestamp, av_price, high, low, vol, o_price, c_price)
"volume" : vol
}
messageJson = json.dumps(message, indent = 4)
# messageJson = json.dumps(message, indent = 4)
messageJson = str(message)
logger.info("Sending message to PricingSave queue")