1. 18 Aug, 2017 1 commit
  2. 17 Aug, 2017 2 commits
  3. 16 Aug, 2017 1 commit
  4. 15 Aug, 2017 2 commits
  5. 14 Aug, 2017 3 commits
  6. 11 Aug, 2017 7 commits
  7. 10 Aug, 2017 1 commit
  8. 08 Aug, 2017 1 commit
  9. 07 Aug, 2017 4 commits
  10. 04 Aug, 2017 6 commits
  11. 02 Aug, 2017 4 commits
  12. 01 Aug, 2017 4 commits
  13. 31 Jul, 2017 1 commit
  14. 28 Jul, 2017 3 commits
    • Danny Auble's avatar
      Partial revert of commit 98d6a589 making it possible again to not have · 1f6555c7
      Danny Auble authored
      to have 'socket=' in AuthInfo to work.
      
      This is to make it so people don't have to update their slurmdbd.conf's
      when upgrading (and to match documentation).
      
      Continuation of last commit
      
      Bug 4009
      1f6555c7
    • Danny Auble's avatar
      Fix issue when an alternate munge key when communicating on a persistent · 591dc036
      Danny Auble authored
      connection.
      
      Bug 4009
      591dc036
    • Alejandro Sanchez's avatar
      jobcomp/elasticsearch - save state on REQUEST_CONTROL. · 8944b77a
      Alejandro Sanchez authored
      jobcomp/elasticsearch saves/load the state to/from elasticsearch_state.  Since
      the jobcomp API isn't designed with save/load state operations, the plugin
      _save_state() isn't extern and not available from outside the plugin itself,
      thus it is highly coupled to fini() function. This state doesn't follow the
      same execution path as the rest of Slurm states, where in save_all_sate()
      they are all independently scheduled. So we save it manually here on a RPC
      of type REQUEST_CONTROL.
      
      This enables that when the Primary ctld issues a REQUEST_CONTROL to the Backup
      which is currently in controller mode, the Backup will save the state and when
      the Primary assumes control again it can process the saved pending jobs.  The
      other way around was already controlled, because when the Primary is running
      in controller mode and the Backup issues a REQUEST_CONTROL, the Primary is
      shutdown and when breaking the ctld main() function while(1) loop, there was
      already a g_slurm_jobcomp_fini() call in place.
      
      Bug 3908
      8944b77a