Skip to content
Snippets Groups Projects
Commit fbdce30f authored by Moe Jette's avatar Moe Jette
Browse files
parent 3f4c7338
No related branches found
No related tags found
No related merge requests found
...@@ -345,6 +345,8 @@ documents those changes that are of interest to users and admins. ...@@ -345,6 +345,8 @@ documents those changes that are of interest to users and admins.
spawn a task count equal to the number of nodes selected multipled by the spawn a task count equal to the number of nodes selected multipled by the
--ntasks-per-node value. --ntasks-per-node value.
-- In jobcomp/script: Set TZ if set in slurmctld's environment. -- In jobcomp/script: Set TZ if set in slurmctld's environment.
-- Process a job's --mail_type=end option on any job of job termination, not
just normal completion (e.g. all failure modes too).
* Changes in SLURM 1.2.30 * Changes in SLURM 1.2.30
========================= =========================
......
...@@ -4771,6 +4771,8 @@ extern void job_completion_logger(struct job_record *job_ptr) ...@@ -4771,6 +4771,8 @@ extern void job_completion_logger(struct job_record *job_ptr)
} else { /* JOB_FAILED, JOB_NODE_FAIL, or JOB_TIMEOUT */ } else { /* JOB_FAILED, JOB_NODE_FAIL, or JOB_TIMEOUT */
if (job_ptr->mail_type & MAIL_JOB_FAIL) if (job_ptr->mail_type & MAIL_JOB_FAIL)
mail_job_info(job_ptr, MAIL_JOB_FAIL); mail_job_info(job_ptr, MAIL_JOB_FAIL);
else if (job_ptr->mail_type & MAIL_JOB_END)
mail_job_info(job_ptr, MAIL_JOB_END);
} }
g_slurm_jobcomp_write(job_ptr); g_slurm_jobcomp_write(job_ptr);
......
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