From a3f64cbf33ccc81d863dc0f91509101df4cfc44b Mon Sep 17 00:00:00 2001 From: William L Yeck Date: Fri, 13 Sep 2019 12:51:01 -0600 Subject: [PATCH] fixed Retract vs Retraction bug that was preventing Retrac messages from going to Kafka feed --- glass-broker-app/brokerOutput/brokerOutput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glass-broker-app/brokerOutput/brokerOutput.cpp b/glass-broker-app/brokerOutput/brokerOutput.cpp index c5b44c63..f8a8b784 100644 --- a/glass-broker-app/brokerOutput/brokerOutput.cpp +++ b/glass-broker-app/brokerOutput/brokerOutput.cpp @@ -431,7 +431,7 @@ void brokerOutput::sendToOutputTopics(const std::string &message) { "Hypocenter"); return; } - } else if (type == "Retraction") { + } else if (type == "Retract") { // retractions don't have a lat/lon, so just send to all topics? // for each topic for (auto aTopic : m_vOutputTopics) {