From 6e951bf50bf404590531c6623339e24fe70d61df Mon Sep 17 00:00:00 2001 From: enriquecd Date: Wed, 17 May 2017 13:26:10 +0200 Subject: [PATCH] Ignore 0 value modules interval when check last contact in agent details - #888 --- pandora_console/include/functions_modules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index 1b5441a862..d7926d2266 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -2512,7 +2512,7 @@ function modules_get_agentmodule_mininterval_no_async($id_agent) { $sql = 'SELECT COUNT(tae.current_interval) AS num_interval, MIN(tae.current_interval) AS min_interval FROM tagente_estado tae INNER JOIN tagente_modulo tam ON tae.id_agente_modulo = tam.id_agente_modulo - INNER JOIN ttipo_modulo ttm ON tam.id_tipo_modulo = ttm.id_tipo where ttm.nombre not like "async%" and tae.id_agente = '.$id_agent.' and tam.disabled = 0'; + INNER JOIN ttipo_modulo ttm ON tam.id_tipo_modulo = ttm.id_tipo where ttm.nombre not like "async%" and tae.id_agente = '.$id_agent.' and tam.disabled = 0 and tae.current_interval != 0'; return db_get_row_sql($sql); }