Skip to content
Snippets Groups Projects
Commit fee1565e authored by Don Lipari's avatar Don Lipari
Browse files

-- Fixed small bug in src/common/slurmdb_defs.c reported by Bjorn-Helge

parent 92b0f78c
No related branches found
No related tags found
No related merge requests found
...@@ -44,6 +44,7 @@ documents those changes that are of interest to users and admins. ...@@ -44,6 +44,7 @@ documents those changes that are of interest to users and admins.
pending jobs. pending jobs.
-- Increase max message size for the slurmdbd from 1000000 to 16*1024*1024 -- Increase max message size for the slurmdbd from 1000000 to 16*1024*1024
-- Increase number of active threads in the slurmdbd from 50 to 100 -- Increase number of active threads in the slurmdbd from 50 to 100
-- Fixed small bug in src/common/slurmdb_defs.c reported by Bjørn-Helge Mevik
* Changes in SLURM 2.2.0.pre12 * Changes in SLURM 2.2.0.pre12
============================== ==============================
......
...@@ -52,7 +52,7 @@ ExitCode field whose format mirrors the output of <b>scontrol</b> and ...@@ -52,7 +52,7 @@ ExitCode field whose format mirrors the output of <b>scontrol</b> and
<h1>Derived Exit Code and String</h1> <h1>Derived Exit Code and String</h1>
<p>After reading the above description of a job's exit code, one can <p>After reading the above description of a job's exit code, one can
easily imagine a scenario where a central task of a job fails but the imagine a scenario where a central task of a batch job fails but the
script returns an exit code of zero, indicating success. In many script returns an exit code of zero, indicating success. In many
cases, a user may not be able to ascertain the success or failure of a cases, a user may not be able to ascertain the success or failure of a
job until after they have examined the job's output files.</p> job until after they have examined the job's output files.</p>
...@@ -110,7 +110,7 @@ If a change is desired, <b>sjobexitmod</b> can modify the derived fields: ...@@ -110,7 +110,7 @@ If a change is desired, <b>sjobexitmod</b> can modify the derived fields:
exit fields:</p> exit fields:</p>
<PRE> <PRE>
> sacct -X -j 123 -o JobID,NNodes,State,ExitCode,Derivedexitcode,DerivedExitStr > sacct -X -j 123 -o JobID,NNodes,State,ExitCode,DerivedExitcode,DerivedExitStr
JobID NNodes State ExitCode DerivedExitCode DerivedExitStr JobID NNodes State ExitCode DerivedExitCode DerivedExitStr
------------ -------- ---------- -------- --------------- -------------- ------------ -------- ---------- -------- --------------- --------------
123 1 COMPLETED 0:0 49:0 out of memory 123 1 COMPLETED 0:0 49:0 out of memory
......
...@@ -1614,7 +1614,7 @@ extern void log_assoc_rec(slurmdb_association_rec_t *assoc_ptr, ...@@ -1614,7 +1614,7 @@ extern void log_assoc_rec(slurmdb_association_rec_t *assoc_ptr,
if(assoc_ptr->grp_cpu_run_mins == INFINITE) if(assoc_ptr->grp_cpu_run_mins == INFINITE)
debug2(" GrpCPURunMins : NONE"); debug2(" GrpCPURunMins : NONE");
else if(assoc_ptr->grp_cpu_mins != NO_VAL) else if(assoc_ptr->grp_cpu_run_mins != NO_VAL)
debug2(" GrpCPURunMins : %"PRIu64"", debug2(" GrpCPURunMins : %"PRIu64"",
assoc_ptr->grp_cpu_run_mins); assoc_ptr->grp_cpu_run_mins);
......
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