From 541b81dd38101361e0d345cb81f7303abdd255d8 Mon Sep 17 00:00:00 2001 From: Paul Thornthwaite Date: Thu, 20 Dec 2012 10:15:51 +0000 Subject: [PATCH] [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. --- lib/fog/ecloud/models/compute/environment.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fog/ecloud/models/compute/environment.rb b/lib/fog/ecloud/models/compute/environment.rb index 3a339b1c0..dc2a65ef5 100644 --- a/lib/fog/ecloud/models/compute/environment.rb +++ b/lib/fog/ecloud/models/compute/environment.rb @@ -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