mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
tag.destroy was resulting in NoMethodError: undefined method "keys" for "":String. changed 2nd attribute to delete_tags to be the expected hash.
This commit is contained in:
parent
989b354165
commit
8af0538cd9
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ module Fog
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
requires :key, :resource_id
|
requires :key, :resource_id
|
||||||
connection.delete_tags(resource_id, key)
|
connection.delete_tags(resource_id, key => value)
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue