Subject: | VM::EC2::associate_route_table missing parens. |
Date: | Thu, 11 Apr 2013 15:00:02 -0400 |
To: | bug-VM-EC2 [...] rt.cpan.org |
From: | Kevin Montuori <montuori [...] gmail.com> |
Hi --
In the subroutine VM::EC2::associate_route_table (v. 1.23) this
statement:
my @param = $self->single_parm(SubnetId=>\%args),
$self->single_parm(RouteTableId=>\%args);
should read:
my @param = ($self->single_parm(SubnetId=>\%args),
$self->single_parm(RouteTableId=>\%args));
... note the addition of the parenthesis. As is, the route_table_id
param disappears.
Thanks.
k.
--
Kevin Montuori
montuori@gmail.com