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:
parent
8d4918d117
commit
541b81dd38
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ module Fog
|
|||
end
|
||||
|
||||
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
|
||||
|
||||
def networks
|
||||
|
|
Loading…
Reference in a new issue