neilmunday / slurm-mail

Slurm-Mail is a drop in replacement for Slurm's e-mails to give users much more information about their jobs compared to the standard Slurm e-mails.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Array max notifications feature does not work

neilmunday opened this issue · comments

In the existing code (version 4.8 and below), the check for limiting the number of e-mails notifications for job arrays is:

if not array_summary and 0 < options.array_max_notifications > len(jobs):

This is incorrect and should be:

if not array_summary and 0 < options.array_max_notifications < len(jobs):

Fix merged into main.