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

feature #307: Get driver messages when an action succeeds

(cherry picked from commit 585ab84862b7e964649079633206fb6f7899bb10)
This commit is contained in:
Ruben S. Montero 2010-08-28 00:19:52 +02:00
parent fbd2e2aefd
commit eb50a56592

View File

@ -100,9 +100,10 @@ void AuthManagerDriver::protocol(
else
return;
getline(is,info);
if (action == "LOG")
{
getline(is,info);
NebulaLog::log("AuM",Log::INFO,info.c_str());
}
else if (result == "SUCCESS")
@ -111,7 +112,6 @@ void AuthManagerDriver::protocol(
}
else
{
getline(is,info);
authm->notify_request(id,false,info);
}