forked from Deuxfleurs/garage
lifecycle worker: add log message when starting
This commit is contained in:
parent
adbf5925de
commit
a00a52633f
1 changed files with 16 additions and 16 deletions
|
@ -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 { .. } => (),
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue