From 84e6d1aa47864483c78a6c23d15d24f564101d9b Mon Sep 17 00:00:00 2001 From: Christopher Oliver Date: Wed, 13 Jul 2011 15:51:31 -0400 Subject: [PATCH] [AWS Autoscaling] Removed unnecessary options merge in Delete Policy request. --- lib/fog/aws/requests/auto_scaling/delete_policy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fog/aws/requests/auto_scaling/delete_policy.rb b/lib/fog/aws/requests/auto_scaling/delete_policy.rb index bc8e385fc..5ff2a2e1e 100644 --- a/lib/fog/aws/requests/auto_scaling/delete_policy.rb +++ b/lib/fog/aws/requests/auto_scaling/delete_policy.rb @@ -29,7 +29,7 @@ module Fog 'AutoScalingGroupName' => auto_scaling_group_name, 'PolicyName' => policy_name, :parser => Fog::Parsers::AWS::AutoScaling::Basic.new - }.merge!(options)) + }) end end