Skip to content
Snippets Groups Projects
Commit b4ce2510 authored by Tim McMullan's avatar Tim McMullan Committed by Danny Auble
Browse files

job_container/tmpfs - Prevent reading the plugin config multiple times per

step.

Bug 14800
parent 43811404
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,8 @@ documents those changes that are of interest to users and administrators.
-- Fix multi-node step launch failure when nodes in the controller aren't in
natural order. This can happen with inconsistent node naming (such as
node15 and node052) or with dynamic nodes which can register in any order.
-- job_container/tmpfs - Prevent reading the plugin config multiple times per
step.
 
* Changes in Slurm 22.05.3
==========================
......
......@@ -199,6 +199,12 @@ extern int init(void)
plugin_name);
#endif
if (!get_slurm_jc_conf()) {
error("%s: Configuration not read correctly: Does '%s' not exist?",
plugin_type, tmpfs_conf_file);
return SLURM_ERROR;
}
debug("%s loaded", plugin_name);
return SLURM_SUCCESS;
......
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