From b7bc70f4ae7407fba52010b6b0b975e5c7dd8ef6 Mon Sep 17 00:00:00 2001 From: "felix.suarez" Date: Fri, 15 Sep 2023 12:51:56 -0500 Subject: [PATCH] Fix: return status for non activated alert --- pandora_server/lib/PandoraFMS/Core.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index f7fb9be07b..f1cdecb7e0 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -743,8 +743,8 @@ sub pandora_evaluate_alert ($$$$$$$;$$$$) { # Check if the hiscorical value meets the condition compared to the val. $activate_alert = eval("$historical_value $condition $value"); } - - return $status if $activate_alert; + # Return $status if the alert is not activated + return $status if !$activate_alert; } } @@ -779,7 +779,7 @@ sub pandora_evaluate_alert ($$$$$$$;$$$$) { if(defined ($agent)) { pandora_mark_agent_for_alert_update ($dbh, $agent->{'id_agente'}); } - + return 0; #Launch the alert }