1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-25 02:50:08 +03:00

feature #2259: Use upcase when trying to remove a tag

This commit is contained in:
Daniel Molina 2013-10-31 12:40:58 +01:00
parent 50561edbc9
commit dcfb3a8c74

View File

@ -174,7 +174,7 @@ module Tags
end
tags.each { |key,value|
resource.delete_element("#{template_key}/EC2_TAGS/#{key}")
resource.delete_element("#{template_key}/EC2_TAGS/#{key.upcase}")
}
rc = resource.update(resource.template_like_str(template_key))