lifecycle worker: add log message when starting
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Alex 2023-08-31 11:25:14 +02:00
parent adbf5925de
commit a00a52633f
1 changed files with 16 additions and 16 deletions

View File

@ -78,14 +78,7 @@ impl LifecycleWorker {
});
let state = match last_completed {
Some(d) if d >= today => State::Completed(d),
_ => State::Running {
date: today,
pos: vec![],
counter: 0,
objects_expired: 0,
mpu_aborted: 0,
last_bucket: None,
},
_ => State::start(today),
};
Self {
garage,
@ -95,6 +88,20 @@ impl LifecycleWorker {
}
}
impl State {
fn start(date: NaiveDate) -> Self {
info!("Starting lifecycle worker for {}", date);
State::Running {
date,
pos: vec![],
counter: 0,
objects_expired: 0,
mpu_aborted: 0,
last_bucket: None,
}
}
}
#[async_trait]
impl Worker for LifecycleWorker {
fn name(&self) -> String {
@ -213,14 +220,7 @@ impl Worker for LifecycleWorker {
break;
}
}
self.state = State::Running {
date: std::cmp::max(next_day, today()),
pos: vec![],
counter: 0,
objects_expired: 0,
mpu_aborted: 0,
last_bucket: None,
};
self.state = State::start(std::cmp::max(next_day, today()));
}
State::Running { .. } => (),
}