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

[ecloud|compute] Fixes missing value

`:connection` key was not paired with a value. Initializer just accepts
options hash as I read it so assume this was an oversight.
This commit is contained in:
Paul Thornthwaite 2012-12-20 10:15:51 +00:00
parent 8d4918d117
commit 541b81dd38

View file

@ -24,7 +24,7 @@ module Fog
end end
def backup_internet_services def backup_internet_services
@backup_internet_services ||= Fog::Compute::Ecloud::BackupInternetServices.new(:connection, :href => "/cloudapi/ecloud/backupInternetServices/environments/#{id}") @backup_internet_services ||= Fog::Compute::Ecloud::BackupInternetServices.new(:connection => connection, :href => "/cloudapi/ecloud/backupInternetServices/environments/#{id}")
end end
def networks def networks