fix: Fix typo in log message (#5222)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
pull/24376/head
Marko Mikulicic 2022-07-27 17:34:37 +02:00 committed by GitHub
parent 9a9a1a4777
commit 9da8062a16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}