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

Fix typo in function definition of unpack_old_job_alloc

step_mgr was incrementing step_id twice for each job step started.
parent 6e663066
No related branches found
No related tags found
No related merge requests found
...@@ -347,7 +347,6 @@ step_create ( step_specs *step_specs, struct step_record** new_step_record ) ...@@ -347,7 +347,6 @@ step_create ( step_specs *step_specs, struct step_record** new_step_record )
fatal ("create_step_record failed with no memory"); fatal ("create_step_record failed with no memory");
/* set the step_record values */ /* set the step_record values */
step_ptr->step_id = (job_ptr->next_step_id)++;
step_ptr->node_bitmap = nodeset; step_ptr->node_bitmap = nodeset;
step_ptr->cyclic_alloc = step_specs->task_dist; step_ptr->cyclic_alloc = step_specs->task_dist;
......
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