From eaf3e0ef4cc87faa9b20dd9b3d97cffebcbac91c Mon Sep 17 00:00:00 2001 From: Omar Rodriguez Arenas Date: Tue, 4 Jun 2024 18:59:50 -0600 Subject: [PATCH] Fix incorrect event type in log --- lib/pushmi_pullyu/logging.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pushmi_pullyu/logging.rb b/lib/pushmi_pullyu/logging.rb index 79d32d1..d880ab5 100644 --- a/lib/pushmi_pullyu/logging.rb +++ b/lib/pushmi_pullyu/logging.rb @@ -112,7 +112,7 @@ def log_preservation_failure(entity, try_attempt, exception) "\tRetry attempt: #{try_attempt}\n" message_information = { - event_type: :fail_and_retry, + event_type: :failure, event_time: Time.now.to_s, entity_type: entity[:type], entity_uuid: entity[:uuid],