Skip to content
Snippets Groups Projects
Commit 8cc57865 authored by Moe Jette's avatar Moe Jette
Browse files

Minor re-structuring of code for clarity. No change in logic.

parent ca0816c1
No related branches found
No related tags found
No related merge requests found
...@@ -147,12 +147,12 @@ static int _remove_job(db_job_id_t job_id) ...@@ -147,12 +147,12 @@ static int _remove_job(db_job_id_t job_id)
//free_bgl_partition(); //free_bgl_partition();
return STATUS_OK; return STATUS_OK;
} else {
(void) jm_signal_job(job_id, SIGKILL);
rc = jm_cancel_job(job_id);
} }
(void) jm_signal_job(job_id, SIGKILL);
rc = jm_cancel_job(job_id);
/* it doesn't appear that this does anything. */ /* it doesn't appear that this does anything. */
//rc = rm_remove_job(job_id); // rc = rm_remove_job(job_id);
if (rc != STATUS_OK) { if (rc != STATUS_OK) {
if (rc == JOB_NOT_FOUND) { if (rc == JOB_NOT_FOUND) {
...@@ -169,7 +169,7 @@ static int _remove_job(db_job_id_t job_id) ...@@ -169,7 +169,7 @@ static int _remove_job(db_job_id_t job_id)
} }
/* try once more... */ /* try once more... */
/* it doesn't appear that this does anything. */ /* it doesn't appear that this does anything. */
// (void) rm_remove_job(job_id); // (void) rm_remove_job(job_id);
error("Failed to remove job %d from MMCS", job_id); error("Failed to remove job %d from MMCS", job_id);
return INTERNAL_ERROR; return INTERNAL_ERROR;
} }
......
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