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

Fix scheduler log message

This commit is contained in:
Ruben S. Montero 2015-03-29 19:54:12 +02:00
parent 11a2da8d60
commit 26603c5655

View File

@ -700,9 +700,6 @@ void Scheduler::match_schedule()
int n_error;
int n_fits;
string reqs;
string ds_reqs;
HostXML * host;
DatastoreXML *ds;
@ -800,7 +797,7 @@ void Scheduler::match_schedule()
ostringstream oss;
oss << "No host meets SCHED_REQUIREMENTS: "
<< reqs;
<< vm->get_requirements();
vm->log(oss.str());
}
@ -889,7 +886,7 @@ void Scheduler::match_schedule()
ostringstream oss;
oss << "No system datastore meets SCHED_DS_REQUIREMENTS: "
<< ds_reqs;
<< vm->get_ds_requirements();
vm->log(oss.str());
}