From 09dc563bb1d2adff44d75c8c8430294a3f9601d6 Mon Sep 17 00:00:00 2001 From: itoussies <65223458+itoussies@users.noreply.github.com> Date: Wed, 30 Jun 2021 15:07:05 +0200 Subject: [PATCH] fix(aws/health): typo in events mode (#2912) --- cloud/aws/health/mode/events.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/aws/health/mode/events.pm b/cloud/aws/health/mode/events.pm index 55d29d0e8..9504c0433 100644 --- a/cloud/aws/health/mode/events.pm +++ b/cloud/aws/health/mode/events.pm @@ -103,7 +103,7 @@ sub check_options { next if ($option eq ''); $self->{filter_options}->{'filter_' . $_} = [] if (!defined($self->{filter_options}->{'filter_' . $_})); - push @{$self->{filter_options}->{'filter_' . $_}}, split(/,/, $options); + push @{$self->{filter_options}->{'filter_' . $_}}, split(/,/, $option); } } }