Skip to content
Snippets Groups Projects
Commit c6038c16 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-717: getSubTasksStartingInThreeMinutes includes subtasks in scheduled and queueing state

parent 4c77a5bf
No related branches found
No related tags found
1 merge request!447TMSS-717: merge commissioning fixes back to master
...@@ -104,7 +104,10 @@ Json::Value TMSSBridge::getSubTasksStartingInThreeMinutes() ...@@ -104,7 +104,10 @@ Json::Value TMSSBridge::getSubTasksStartingInThreeMinutes()
LOG_INFO_STR(string("JSON data for ") << queryStr2 << std::endl << result2.toStyledString()); LOG_INFO_STR(string("JSON data for ") << queryStr2 << std::endl << result2.toStyledString());
result.append(result2); for (int32 idx ; idx < result2.size(); idx++) {
Json::Value item = result2[idx];
result.append(item);
}
} }
LOG_INFO_STR(string("JSON data total") << std::endl << result.toStyledString()); LOG_INFO_STR(string("JSON data total") << std::endl << result.toStyledString());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment