fix(plugin) missing $ previous commit
This commit is contained in:
parent
deb65967e2
commit
a3e29114af
|
@ -139,7 +139,7 @@ sub check_options {
|
|||
$self->{aws_timeframe} = defined($self->{option_results}->{timeframe}) ? $self->{option_results}->{timeframe} : 600;
|
||||
$self->{aws_period} = defined($self->{option_results}->{period}) ? $self->{option_results}->{period} : 60;
|
||||
|
||||
if (defined($self->{option_results}->{target_group}) && self->{option_results}->{target_group} ne '') {
|
||||
if (defined($self->{option_results}->{target_group}) && $self->{option_results}->{target_group} ne '') {
|
||||
push @{$self->{aws_dimensions}}, { Name => 'TargetGroup', Value => $self->{option_results}->{target_group} };
|
||||
}
|
||||
|
||||
|
|
|
@ -153,7 +153,7 @@ sub check_options {
|
|||
$self->{aws_timeframe} = defined($self->{option_results}->{timeframe}) ? $self->{option_results}->{timeframe} : 600;
|
||||
$self->{aws_period} = defined($self->{option_results}->{period}) ? $self->{option_results}->{period} : 60;
|
||||
|
||||
if (defined($self->{option_results}->{target_group}) && self->{option_results}->{target_group} ne '') {
|
||||
if (defined($self->{option_results}->{target_group}) && $self->{option_results}->{target_group} ne '') {
|
||||
push @{$self->{aws_dimensions}}, { Name => 'TargetGroup', Value => $self->{option_results}->{target_group} };
|
||||
}
|
||||
|
||||
|
|
|
@ -129,7 +129,7 @@ sub check_options {
|
|||
$self->{aws_timeframe} = defined($self->{option_results}->{timeframe}) ? $self->{option_results}->{timeframe} : 600;
|
||||
$self->{aws_period} = defined($self->{option_results}->{period}) ? $self->{option_results}->{period} : 60;
|
||||
|
||||
if (defined($self->{option_results}->{target_group}) && self->{option_results}->{target_group} ne '') {
|
||||
if (defined($self->{option_results}->{target_group}) && $self->{option_results}->{target_group} ne '') {
|
||||
push @{$self->{aws_dimensions}}, { Name => 'TargetGroup', Value => $self->{option_results}->{target_group} };
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue