server/jobstate: improve name of 'try_update_state_file'

and improve comment

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak
2021-04-26 10:21:05 +02:00
committed by Dietmar Maurer
parent 951fe0cb7d
commit 37a634f550
4 changed files with 6 additions and 5 deletions

View File

@ -152,8 +152,9 @@ pub fn create_state_file(jobtype: &str, jobname: &str) -> Result<(), Error> {
}
/// Tries to update the state file with the current time
/// if the job is currently running, does nothing,
pub fn try_update_state_file(jobtype: &str, jobname: &str) -> Result<(), Error> {
/// if the job is currently running, does nothing.
/// Intended for use when the schedule changes.
pub fn update_job_last_run_time(jobtype: &str, jobname: &str) -> Result<(), Error> {
let mut job = match Job::new(jobtype, jobname) {
Ok(job) => job,
Err(_) => return Ok(()), // was locked (running), so do not update