diff --git a/NEWS b/NEWS index 9484615e2412a123f2a8d0d70c9fa0914ff98ef8..c80f856cb9540b60d40c1e0d4642112a442203c2 100644 --- a/NEWS +++ b/NEWS @@ -13,6 +13,7 @@ documents those changes that are of interest to users and admins. -- Fixed issue with QOS preemption when adding new QOS. -- Fixed issue with comment field being used in a job finishing before it starts in accounting. + -- Add slashes in front of derived exit code when modifying a job. * Changes in SLURM 2.3.2 ======================== diff --git a/src/plugins/accounting_storage/mysql/as_mysql_job.c b/src/plugins/accounting_storage/mysql/as_mysql_job.c index de518b601641d68cd41517c1e5780dfb1961320a..2e03d6becc4bed69d39f8b61f05d8346962d0cac 100644 --- a/src/plugins/accounting_storage/mysql/as_mysql_job.c +++ b/src/plugins/accounting_storage/mysql/as_mysql_job.c @@ -584,9 +584,11 @@ extern List as_mysql_modify_job(mysql_conn_t *mysql_conn, uint32_t uid, if (job->derived_ec != NO_VAL) xstrfmtcat(vals, ", derived_ec=%u", job->derived_ec); - if (job->derived_es) - xstrfmtcat(vals, ", derived_es='%s'", job->derived_es); - + if (job->derived_es) { + char *derived_es = slurm_add_slash_to_quotes(job->derived_es); + xstrfmtcat(vals, ", derived_es='%s'", derived_es); + xfree(derived_es); + } if (!vals) { errno = SLURM_NO_CHANGE_IN_DATA; error("No change specified for job modification");