1. 26 Jun, 2012 6 commits
  2. 25 Jun, 2012 6 commits
  3. 22 Jun, 2012 4 commits
  4. 21 Jun, 2012 4 commits
  5. 20 Jun, 2012 4 commits
  6. 18 Jun, 2012 3 commits
  7. 15 Jun, 2012 2 commits
  8. 13 Jun, 2012 4 commits
  9. 12 Jun, 2012 3 commits
  10. 11 Jun, 2012 2 commits
  11. 07 Jun, 2012 1 commit
  12. 05 Jun, 2012 1 commit
    • Phil Eckert's avatar
      Permit held job to be modified · 1fee4fe4
      Phil Eckert authored
      I was doing some checking to find out why the the 2.4 branch and
      master branch of schedmd was not allowing held jobs to be modified,
      when attempting to do so,  scontrol would return:
      
      slurm_update error: Requested partition configuration not available now
      
      I did some debugging and found that it was caused by code added to the tail end
      of job_limits_check() in job_mgr.c. It  had this addition:
      
              } else if (job_ptr->priority == 0) {   /* user or administrator hold */
                      fail_reason = WAIT_HELD;
              }
      
      It is causes all modifications done by scontrol on held jobs, to fail.
      1fee4fe4