lib/fog/google/storage.rb in fog-1.5.0 vs lib/fog/google/storage.rb in fog-1.6.0

- old
+ new

@@ -189,10 +189,10 @@ @google_storage_access_key_id = options[:google_storage_access_key_id] @google_storage_secret_access_key = options[:google_storage_secret_access_key] @connection_options = options[:connection_options] || {} @hmac = Fog::HMAC.new('sha1', @google_storage_secret_access_key) - @host = options[:host] || 'commondatastorage.googleapis.com' + @host = options[:host] || 'storage.googleapis.com' @persistent = options.fetch(:persistent, true) @port = options[:port] || 443 @scheme = options[:scheme] || 'https' @connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options) end