1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Merge pull request #1292 from jperry/master

Fixes Issue 1291
This commit is contained in:
Wesley Beary 2012-11-19 08:31:29 -08:00
commit d6a71c51cc

View file

@ -125,7 +125,7 @@ module Fog
requires :id
opts = {}
opts.merge({'ForceDelete' => true}) if options[:force]
opts.merge!({'ForceDelete' => true}) if options[:force]
connection.delete_auto_scaling_group(id, opts)
end