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

This commit is contained in:
Ruben S. Montero 2010-08-28 00:19:52 +02:00
parent e1931a4047
commit 585ab84862

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);
}