fix: Fix typo in log message (#5222)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>pull/24376/head
parent
9a9a1a4777
commit
9da8062a16
|
@ -443,10 +443,10 @@ pub(crate) async fn run_lifecycle_manager<P: Persister>(
|
|||
) {
|
||||
loop {
|
||||
if poison_cabinet.contains(&PoisonPill::LifecyclePanic) {
|
||||
panic!("Lifecycle manager poisened, panic");
|
||||
panic!("Lifecycle manager poisoned, panic");
|
||||
}
|
||||
if poison_cabinet.contains(&PoisonPill::LifecycleExit) {
|
||||
error!("Lifecycle manager poisened, exit early");
|
||||
error!("Lifecycle manager poisoned, exit early");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue