mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Google changed their URL scheme for Cloud Storage.
see https://developers.google.com/storage/docs/reference/releasenotes for more details.
This commit is contained in:
parent
dc28c7be85
commit
f906a33b9f
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ module Fog
|
|||
@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'
|
||||
|
|
Loading…
Reference in a new issue