/* * Reload the slurm.conf parameters without any processing * of the node, partition, or state information. * Specifically, we don't want to purge batch scripts based * upon old job state information. * This is a stripped down version of read_slurm_conf(0). */ static void _backup_reconfig(void) { slurm_conf_reinit(NULL); update_logging(); slurmctld_conf.last_update = time(NULL); return; }
/* * Reload the slurm.conf parameters without any processing * of the node, partition, or state information. * Specifically, we don't want to purge batch scripts based * upon old job state information. * This is a stripped down version of read_slurm_conf(0). */ static int _backup_reconfig(void) { slurm_conf_reinit(NULL); update_logging(); slurmctld_conf.last_update = time(NULL); return SLURM_SUCCESS; }