- 27 Nov, 2018 4 commits
-
-
Nate Rini authored
when env is overwritten by the command line. Bug 5977
-
Danny Auble authored
-
Danny Auble authored
Bug 6016
-
Broderick Gardner authored
Bug 6092
-
- 26 Nov, 2018 1 commit
-
-
Felip Moll authored
configuration. Bug 5872
-
- 23 Nov, 2018 2 commits
-
-
Lewis Lakerink authored
Bug 6015.
-
Tim Wickberg authored
Was attributed to the wrong author by mistake. This reverts commit 8b5acf90.
-
- 21 Nov, 2018 3 commits
-
-
Nate Rini authored
Bug 5977
-
Marshall Garey authored
started on a node. Bug 5865
-
Broderick Gardner authored
Bug 6061
-
- 20 Nov, 2018 3 commits
-
-
Danny Auble authored
bug 6016
-
Chris Samuel authored
Bug 6015
-
Morris Jette authored
Bug 6015
-
- 15 Nov, 2018 1 commit
-
-
Marshall Garey authored
The srun man page states that --prolog=none or --epilog=none would prevent the SrunProlog or SrunEpilog scripts defined in slurm.conf from running. However, with SLURM_TEST_EXEC set in the environment, srun would look for a script named "none" and run it if found. If not found, then srun would print an error message, but the SrunProlog or SrunEpilog would (correctly) not run. * Prevent srun from running a script named "none" that is in the path. * This also prevents the error message if it is not found. Bug 5948.
-
- 12 Nov, 2018 1 commit
-
-
Brian Christiansen authored
Moved to https://github.com/SchedMD/slurm-gcp Left README with link to new location. Will remove gcp dir in master/19.05. Bug 5842
-
- 10 Nov, 2018 1 commit
-
-
Nate Rini authored
Bug 5985
-
- 09 Nov, 2018 4 commits
-
-
Felip Moll authored
scheduler. Main scheduler detects if a job asked for more than one partition and splits one scheduling tasks for each partition. If the job asked for a reservation and the intersection between the nodes in the reservation and the partition does not suffice to satisfy the job, then skip scheduling this partition. Otherwise this may cause useless scheduling effort and possibly overwriting incorrectly the PD reason of a job. bug 5895
-
Jason Booth authored
when read in from the slurm.conf file. Bug 5994
-
Danny Auble authored
Bug 5704
-
Felip Moll authored
Caused bad license counts. Comes from a8961fd7. Bug 5704
-
- 08 Nov, 2018 2 commits
-
-
Broderick Gardner authored
Bug 5686
-
Alejandro Sanchez authored
Regression introduced when support for up to 9 backup controllers was added in c61ffa1a. Bug 6001.
-
- 07 Nov, 2018 2 commits
-
-
Morris Jette authored
Bug 5826
-
Danny Auble authored
Bug 5793
-
- 06 Nov, 2018 1 commit
-
-
Michael Hinton authored
when trying to register. If slurmd never connects to slurmctld and then slurmd is shutdown, there is a small memory leak. This is not an important memory leak; however, this will fix things for valgrind when testing a slurmd by itself. Bug 5989
-
- 05 Nov, 2018 3 commits
-
-
Michael Hinton authored
Set errno to return value of pthread_* functions during error. All pthread macros now handle errors in the same way. Do not set errno immediately, because in threaded programs errno is a macro that expands into a function call. We don't want to incur that performance cost unless it's actually an error. See The Linux Programming Interface, 3.5.2 (pg.53) and 29.2 (pg 621). Bug 5901
-
Morris Jette authored
Bug 5976
-
Artem Polyakov authored
Bug 5917
-
- 01 Nov, 2018 2 commits
-
-
Marshall Garey authored
Bug 5865
-
Broderick Gardner authored
to not require -Wno-format-truncation CFLAG. Bug 4310 Bug 5655 Bug 3482
-
- 31 Oct, 2018 3 commits
-
-
Michael Hinton authored
Fix memory leak by freeing iterator. Simplify logic to be more intuitive. Separate out _check_exec() into two logically different portions. Get rid of unnecessary goto's. Bug 5848
-
Marshall Garey authored
and distributed. Bug 5774
-
Danny Auble authored
previously accrued for priority. Bug 5881 Brian approved.
-
- 30 Oct, 2018 4 commits
-
-
Marshall Garey authored
have the same id (for example, if a job was requeued) by also checking the submit time. Bug 5197
-
Marshall Garey authored
Bug 5197
-
Marshall Garey authored
Bug 5197
-
Danny Auble authored
when not runaway. Bug 5940
-
- 26 Oct, 2018 2 commits
-
-
Brian Christiansen authored
Bug 5755
-
Dominik Bartkiewicz authored
Bug 5443
-
- 25 Oct, 2018 1 commit
-
-
Marshall Garey authored
Fix regression caused by commit bb8b4214. Commit bb8b4214 introduced this in scontrol_hold(): - job_msg.job_id_str = _next_job_id(); - while (job_msg.job_id_str) { + while ((job_msg.job_id_str = _next_job_id())) { But didn't take out _next_job_id() at the bottom of the while loop - so _next_job_id() is called twice in a row, skipping every other job in the list. Bug 5902
-