diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index 307c0a0806..4c1401bd37 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,7 @@ +2010-08-04 Ramon Novoa + + * lib/PandoraFMS/Core.pm: Select uninitialized keep alive modules. + 2010-07-30 Ramon Novoa * lib/PandoraFMS/Core.pm: Do not mark async modules as unknown. diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 10c821178e..b81df6f8f6 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -1217,7 +1217,7 @@ sub pandora_module_keep_alive_nd { AND tagente.disabled = 0 AND tagente_modulo.id_tipo_modulo = 100 AND tagente_modulo.disabled = 0 - AND tagente_estado.datos = 1 + AND (tagente_estado.datos = 1 OR tagente_estado.datos = \'\') AND tagente_modulo.id_agente_modulo = tagente_estado.id_agente_modulo AND ( tagente_estado.utimestamp + (tagente.intervalo * 2) < UNIX_TIMESTAMP())');