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

[vcloud|compute] filter non-server items from server list.

This commit is contained in:
Lincoln Stoll 2011-05-24 16:26:36 +10:00
parent 792dbebef2
commit ec351aac2f

View file

@ -47,7 +47,7 @@ module Fog
if resource_entities.nil?
[]
else
resource_entities
resource_entities.select {|re| re[:type] == 'application/vnd.vmware.vcloud.vApp+xml' }
end
end