Skip to content
Snippets Groups Projects
Commit ee3ae045 authored by Danny Auble's avatar Danny Auble
Browse files

Merge remote-tracking branch 'origin/slurm-14.03'

parents cde98653 f3366ada
No related branches found
No related tags found
No related merge requests found
......@@ -260,6 +260,9 @@ documents those changes that are of interest to users and administrators.
job files (script and environment).
-- Added patch in the contribs directory for integrating make version 4.0 with
Slurm and renamed the previous patch "make-3.81.slurm.patch".
-- Don't wait for an update message from the DBD to finish before sending rc
message back. In slow systems with many associations this could speed
responsiveness in sacctmgr after adding associations.
* Changes in Slurm 14.03.7
==========================
......
......@@ -4591,12 +4591,22 @@ inline static void _slurm_rpc_accounting_update_msg(slurm_msg_t *msg)
slurm_send_rc_msg(msg, EACCES);
return;
}
/* Send message back to the caller letting him know we got it.
There is no need to wait since the end result would be the
same if we wait or not since the update has already
happened in the database.
*/
slurm_send_rc_msg(msg, rc);
if (update_ptr->update_list && list_count(update_ptr->update_list))
rc = assoc_mgr_update(update_ptr->update_list);
END_TIMER2("_slurm_rpc_accounting_update_msg");
slurm_send_rc_msg(msg, rc);
if (rc != SLURM_SUCCESS)
error("assoc_mgr_update gave error: %s", slurm_strerror(rc));
}
/* _slurm_rpc_reboot_nodes - process RPC to schedule nodes reboot */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment