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:
parent
11a2da8d60
commit
26603c5655
@ -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());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user