Skip to content
Snippets Groups Projects
Commit 04336308 authored by Danny Auble's avatar Danny Auble
Browse files

Looks like this was added to 18.08 (then master) before d75ec381

and was missed.

This is no longer needed.
parent 5042bab5
No related branches found
No related tags found
No related merge requests found
...@@ -963,12 +963,9 @@ extern int as_mysql_job_complete(mysql_conn_t *mysql_conn, ...@@ -963,12 +963,9 @@ extern int as_mysql_job_complete(mysql_conn_t *mysql_conn,
xstrfmtcat(query, ", admin_comment='%s'", xstrfmtcat(query, ", admin_comment='%s'",
job_ptr->admin_comment); job_ptr->admin_comment);
if (job_ptr->system_comment) { if (job_ptr->system_comment)
char *comment = slurm_add_slash_to_quotes( xstrfmtcat(query, ", system_comment='%s'",
job_ptr->system_comment); job_ptr->system_comment);
xstrfmtcat(query, ", system_comment='%s'", comment);
xfree(comment);
}
exit_code = job_ptr->exit_code; exit_code = job_ptr->exit_code;
if (exit_code == 1) { if (exit_code == 1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment