mbedtls fixes / the unittest now pass on macOS, and hopefully will on Windows/AppVeyor as well.

This commit is contained in:
Benjamin Sergeant
2019-09-27 14:07:01 -07:00
parent 05c7a26e3a
commit 4cd11fdbc7
7 changed files with 26 additions and 11 deletions

View File

@ -195,6 +195,10 @@ namespace snake
};
auto responseCallback = [ws, pdu, &subscriptionId](const std::string& redisResponse) {
std::stringstream ss;
ss << "Redis Response: " << redisResponse << "...";
ix::IXCoreLogger::Log(ss.str().c_str());
// Success
nlohmann::json response = {{"action", "rtm/subscribe/ok"},
{"id", pdu.value("id", 1)},