Skip to content
Snippets Groups Projects
Commit 2e98e055 authored by Chris Hines's avatar Chris Hines
Browse files

Merge branch 'job-submit04' into 'master'

Add check to submission filter for Desktop requesting for more than one node

See merge request hpc-team/ansible_cluster_in_a_box!215
parents 66a970ff e50c4cf1
No related branches found
No related tags found
1 merge request!215Add check to submission filter for Desktop requesting for more than one node
......@@ -24,6 +24,14 @@ if job_desc.account == "default" then
end
-- Check Desktop requests with more than one node
if ((job_desc.name == "desktop") and (job_desc.min_nodes > 1 )) then
slurm.log_user("The current M3 Desktop applications are unable to utilise more than one node, please select one node instead")
return slurm.ERROR
end
-- Check for gres.gpu requirements in m3c, m3h and m3g, else move job to comp
......
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