View | Details | Raw Unified | Return to ticket 8629 | Differences between
and this patch

Collapse All | Expand All

(-)a/src/slurmctld/job_mgr.c (-1 / +4 lines)
Lines 13341-13346 static int _update_job(struct job_record *job_ptr, job_desc_msg_t * job_specs, Link Here
13341
13341
13342
			if (detail_ptr->begin_time != job_specs->begin_time) {
13342
			if (detail_ptr->begin_time != job_specs->begin_time) {
13343
				detail_ptr->begin_time = job_specs->begin_time;
13343
				detail_ptr->begin_time = job_specs->begin_time;
13344
				details_ptr->accrue_time = 0;
13345
				job_ptr->bit_flags &= ~JOB_ACCRUE_OVER;
13346
				if (slurmctld_conf.debug_flags & DEBUG_FLAG_ACCRUE)
13347
					info("Resetting accrue_time for %pJ on job release", job_ptr);
13344
				update_accounting = true;
13348
				update_accounting = true;
13345
				slurm_make_time_str(&detail_ptr->begin_time,
13349
				slurm_make_time_str(&detail_ptr->begin_time,
13346
						    time_str, sizeof(time_str));
13350
						    time_str, sizeof(time_str));
13347
- 

Return to ticket 8629