From 4ba9edabbeb00b428af4dbc60d77ad17530ba724 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 4 Mar 2016 11:11:28 -0500 Subject: [PATCH] Oops - forgot to include this last change to the parsing routine to the iohyve fetch parsing. --- src/server/DispatcherParsing.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server/DispatcherParsing.cpp b/src/server/DispatcherParsing.cpp index 76a48c9..144089d 100644 --- a/src/server/DispatcherParsing.cpp +++ b/src/server/DispatcherParsing.cpp @@ -46,6 +46,7 @@ QJsonObject Dispatcher::CreateDispatcherEventNotification(QString ID, QJsonObjec } void Dispatcher::parseIohyveFetchOutput(QString outputLog, QJsonObject *out){ + //Note: this is the standard parsing for a "fetch" call QStringList lines = outputLog.split("\n", QString::SkipEmptyParts); if(lines.isEmpty()){ return; } //nothing to report for(int i=lines.length()-1; i>=0; i--){