1. 24 Jan, 2020 2 commits
  2. 16 Jan, 2020 4 commits
  3. 15 Jan, 2020 19 commits
  4. 20 Dec, 2019 9 commits
  5. 19 Dec, 2019 2 commits
  6. 18 Dec, 2019 4 commits
    • Brian Christiansen's avatar
      Fix html italics tags · 7f33dc78
      Brian Christiansen authored
      Bug 7291
      7f33dc78
    • Ben Roberts's avatar
      Fix typos in license documentation · 69ab0b7a
      Ben Roberts authored
      Bug 7291
      69ab0b7a
    • Douglas Wightman's avatar
      Fix incorrect SLURM_CLUSTER_NAME env var in batch step · 910c38e2
      Douglas Wightman authored
      In a multi-cluster environment a job may submit more jobs as part of
      its workflow. This fixes situations where the variable is inherited
      incorrectly on sub-jobs.
      
      Bug 7998
      910c38e2
    • Marshall Garey's avatar
      Ensure x11 is setup before launching a job step · 71df4fae
      Marshall Garey authored
      srun waits for the prolog to finish before launching a job step.
      In _is_prolog_finished(), slurmctld checks the state reason:
      
      	if (job_ptr) {
      		is_running = (job_ptr->state_reason != WAIT_PROLOG);
      	}
      
      But if the job is updated during the job prolog, then _update_job() will
      change the state_reason, and then slurmctld will tell srun that the
      prolog is completed even if it isn't. If srun launches a job step before
      the extern sets up x11, then the job step won't have x11 information. To
      fix this, don't change state_reason in _update_job() if it equals
      WAIT_PROLOG.
      
      Bug 7525
      71df4fae