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

Remove sbatch test for script size being no larger than 64k bytes.

    The current limit is 4GB.
parent 56245834
No related branches found
No related tags found
No related merge requests found
......@@ -12,8 +12,10 @@ documents those changes that are of interest to users and admins.
-- Added Python module to process hostslists as used by SLURM. See
contribs/python/hostlist. Supplied by Kent Engstrom, National
Supercomputer Centre, Sweden.
-- Report abormal task termination message (restored functionality present
-- Report task termination due to signal (restored functionality present
in slurm v1.2).
-- Remove sbatch test for script size being no larger than 64k bytes.
The current limit is 4GB.
* Changes in SLURM 1.3.6
========================
......
......@@ -421,9 +421,6 @@ static void *get_script_buffer(const char *filename, int *size)
if (script_size == 0) {
error("Batch script is empty!");
goto fail;
} else if (script_size >= 0xffff) {
error("Job script exceeds size supported by slurm");
goto fail;
} else if (xstring_is_whitespace(buf)) {
error("Batch script contains only whitespace!");
goto fail;
......
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