Reset absoluteinterval when parsing a new module.
Fixes pandora_enterprise#12368.
This commit is contained in:
parent
b5098ab0e5
commit
29c29ef562
|
@ -4089,7 +4089,7 @@ sub grep_logs {
|
||||||
return @data;
|
return @data;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub create_log($$){
|
sub create_log {
|
||||||
my ($module_name, @data) = @_;
|
my ($module_name, @data) = @_;
|
||||||
|
|
||||||
# No data
|
# No data
|
||||||
|
@ -4282,6 +4282,7 @@ sub init_module ($) {
|
||||||
$module->{'macros'} = {};
|
$module->{'macros'} = {};
|
||||||
$module->{'alert_template'} = undef;
|
$module->{'alert_template'} = undef;
|
||||||
$module->{'filter'} = undef;
|
$module->{'filter'} = undef;
|
||||||
|
$module->{'absoluteinterval'} = undef;
|
||||||
}
|
}
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
Loading…
Reference in New Issue