1. 26 Apr, 2016 5 commits
  2. 25 Apr, 2016 2 commits
  3. 23 Apr, 2016 3 commits
  4. 22 Apr, 2016 6 commits
  5. 21 Apr, 2016 9 commits
  6. 20 Apr, 2016 9 commits
  7. 16 Apr, 2016 1 commit
    • Morris Jette's avatar
      Fix race condtion in a test · 0cbeddda
      Morris Jette authored
      The test was sensitive with respect to a batch step starting before
        requeuing the job. The batch step accounting record either appeared
        in the accounting records or did not depending upon timing. A sleep
        has been added after the job enters RUNNING state to make sure the
        batch steps starts and an accounting records is generated for it.
      0cbeddda
  8. 15 Apr, 2016 5 commits
    • Morris Jette's avatar
      Improve tests · b3c5cd09
      Morris Jette authored
      Include test ID in the account name to better identify where
        vestigial accounts come from.
      b3c5cd09
    • Brian Christiansen's avatar
      Remove umask call. · 726caf19
      Brian Christiansen authored
      Coverity reported:
          CID 93013:  Error handling issues  (CHECKED_RETURN)
      	    "read(int, void *, size_t)" returns the number of bytes read, but it is ignored.
      
      umask() is also not thread-safe.
      726caf19
    • Thomas Hamel's avatar
      [PATCH] Separate health check from shutdown check · 988edf12
      Thomas Hamel authored
      While waiting for the HealthCheckProgram to succeed, slurmd can be
      stopped. The previous behavior introduced a delay up to 10 seconds
      between the shutdown request and the actual shutdown. This patch
      removes this delay.
      988edf12
    • Tim Wickberg's avatar
      Remove siphash_init() and rely on fixed keying. · ba7a6869
      Tim Wickberg authored
      Intentially leave the key value fixed, rather than initialize from
      from /dev/urandom as is commonly recommended. Slurm does not rely on
      the hash function for any cryptographic functionality, and randomness
      would make debugging harder if the hash key changed on each start.
      ba7a6869
    • Brian Christiansen's avatar
      Remove dead assignment. · 8da4aa58
      Brian Christiansen authored
      Found by clang.
      8da4aa58