1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

Feature #1678: InformationManagerDriver checks if the monitor info is empty

This commit is contained in:
Carlos Martín 2013-10-24 10:57:11 +02:00
parent 1f5e70031b
commit 94cb3bd2e2

View File

@ -122,6 +122,11 @@ void InformationManagerDriver::protocol(const string& message) const
getline (is, hinfo64);
if (hinfo64.empty())
{
return;
}
hinfo = one_util::base64_decode(hinfo64);
if (result != "SUCCESS")