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

B #5762: Fix scheduler message with double quotes

This commit is contained in:
Ruben S. Montero 2022-03-08 20:04:29 +01:00
parent 2d640e8843
commit 7cbcc93d43
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -608,6 +608,8 @@ void VirtualMachineXML::log(const string &st)
string sched_message = oss.str();
sched_message = one_util::gsub(sched_message, "\"", "\\\"");
user_template->replace("SCHED_MESSAGE", sched_message);
oss.str("");