<#911 Fixed serialization error in `/results` for ...
# osctrl
g
#911 Fixed serialization error in `/results` for console Pull request opened by javuto The console result decoder was expecting osquery_query_data.data to be the raw result array, but real TLS ingestion stores a types.QueryWriteData wrapper:
Copy code
{ "name": "...", "result": [ ... ], "status": 0, "message": "" }
So
/results
hit a JSON unmarshal error and returned the generic error getting command results. jmpsec/osctrl