Skip to content
Snippets Groups Projects
Commit 3fc0bd31 authored by jette's avatar jette
Browse files

Merge branch 'slurm-2.6' of https://github.com/SchedMD/slurm into slurm-2.6

parents ae3439e0 efa85e3b
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ documents those changes that are of interest to users and admins. ...@@ -10,6 +10,7 @@ documents those changes that are of interest to users and admins.
allocating cores or sockets. allocating cores or sockets.
-- Requeue batch job if it's node reboots (used to abort the job). -- Requeue batch job if it's node reboots (used to abort the job).
-- Enlarge maximum size of srun's hostlist file. -- Enlarge maximum size of srun's hostlist file.
-- IPMI - Fix first poll to get correct consumed_energy for a step.
* Changes in Slurm 2.6.0rc2 * Changes in Slurm 2.6.0rc2
=========================== ===========================
......
...@@ -732,8 +732,8 @@ static int _get_joules_task(uint16_t delta) ...@@ -732,8 +732,8 @@ static int _get_joules_task(uint16_t delta)
/* This is just for the step, so take all the pervious /* This is just for the step, so take all the pervious
consumption out of the mix. consumption out of the mix.
*/ */
local_energy->previous_consumed_energy += adjustment; start_current_energy =
start_current_energy = local_energy->previous_consumed_energy; local_energy->consumed_energy + adjustment;
local_energy->base_consumed_energy = 0; local_energy->base_consumed_energy = 0;
first = false; first = false;
} }
......
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